Interface GoogleTasksNodeParameters

Source
interface GoogleTasksNodeParameters {
    additionalFields?:
        | {
            completed?: string;
            deleted?: boolean;
            dueDate?: string;
            notes?: string;
            parent?: string;
            previous?: string;
            status?: "completed"
            | "needsAction";
        }
        | {
            completedMax?: string;
            completedMin?: string;
            dueMax?: string;
            dueMin?: string;
            showCompleted?: boolean;
            showDeleted?: boolean;
            showHidden?: boolean;
            updatedMin?: string;
        };
    limit?: number;
    operation?: | "create"
    | "get"
    | "getAll"
    | "update"
    | "delete";
    resource?: "task";
    returnAll?: boolean;
    task?: string;
    taskId?: string;
    title?: string;
    updateFields?: {
        completed?: string;
        deleted?: boolean;
        dueDate?: string;
        notes?: string;
        previous?: string;
        status?: "completed"
        | "needsAction";
        title?: string;
    };
}

Properties§

Source§

readonly additionalFields?:
    | {
        completed?: string;
        deleted?: boolean;
        dueDate?: string;
        notes?: string;
        parent?: string;
        previous?: string;
        status?: "completed"
        | "needsAction";
    }
    | {
        completedMax?: string;
        completedMin?: string;
        dueMax?: string;
        dueMin?: string;
        showCompleted?: boolean;
        showDeleted?: boolean;
        showHidden?: boolean;
        updatedMin?: string;
    }

Default: {}

Source§

readonly limit?: number

Max number of results to return Default: 20 Type options: {"minValue":1,"maxValue":100}

Source§

readonly operation?: "create" | "get" | "getAll" | "update" | "delete"

Default: "create"

Source§

readonly resource?: "task"

Default: "task"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly task?: string

Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTasks"}

Source§

readonly taskId?: string

Source§

readonly title?: string

Title of the task

Source§

readonly updateFields?: {
    completed?: string;
    deleted?: boolean;
    dueDate?: string;
    notes?: string;
    previous?: string;
    status?: "completed" | "needsAction";
    title?: string;
}

Default: {}