File

src/gsuite/tasks/tasklist.model.ts

Description

A list containing tasks. Users can have more than one task list to manage their tasks the way they want.

Properties

etag
etag: void
Type : void

ETag of the resource.

id
id: void
Type : void

Task list identifier.

kind
kind: void
Type : void

Type of the resource. This is always "tasks#taskList".

selfLink
selfLink: void
Type : void

URL pointing to this task list. Used to retrieve, update, or delete this task list.

title
title: void
Type : void

Title of the task list.

updated
updated: Date
Type : Date

Last modification time of the task list

export interface Tasklist {
    /**
     * Type of the resource. This is always "tasks#taskList".
     */
    kind: string;
    /**
     * Task list identifier.
     */
    id: string;
    /**
     *    ETag of the resource.
     */
    etag: string;
    /**
     * Title of the task list.
     */
    title: string;
    /**
     * Last modification time of the task list
     */
    updated: Date;
    /**
     * URL pointing to this task list. Used to retrieve, update, or delete this task list.
     */
    selfLink: string;
}

results matching ""

    No results matching ""