Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TasksListOptions

import type { TasksListOptions } from "https://googleapis.deno.dev/v1/tasks:v1.ts";

Additional options for Tasks#tasksList.

interface TasksListOptions {
completedMax?: string;
completedMin?: string;
dueMax?: string;
dueMin?: string;
maxResults?: number;
pageToken?: string;
showCompleted?: boolean;
showDeleted?: boolean;
showHidden?: boolean;
updatedMin?: string;
}

§Properties

§
completedMax?: string
[src]

Upper bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.

§
completedMin?: string
[src]

Lower bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.

§
dueMax?: string
[src]

Upper bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.

§
dueMin?: string
[src]

Lower bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.

§
maxResults?: number
[src]

Maximum number of tasks returned on one page. Optional. The default is 20 (max allowed: 100).

§
pageToken?: string
[src]

Token specifying the result page to return. Optional.

§
showCompleted?: boolean
[src]

Flag indicating whether completed tasks are returned in the result. Optional. The default is True. Note that showHidden must also be True to show tasks completed in first party clients, such as the web UI and Google's mobile apps.

§
showDeleted?: boolean
[src]

Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.

§
showHidden?: boolean
[src]

Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.

§
updatedMin?: string
[src]

Lower bound for a task's last modification time (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by last modification time.