src/gsuite/tasks/tasklist.model.ts
A list containing tasks. Users can have more than one task list to manage their tasks the way they want.
etag |
etag: |
Type : void
|
Defined in src/gsuite/tasks/tasklist.model.ts:17
|
ETag of the resource. |
id |
id: |
Type : void
|
Defined in src/gsuite/tasks/tasklist.model.ts:13
|
Task list identifier. |
kind |
kind: |
Type : void
|
Defined in src/gsuite/tasks/tasklist.model.ts:9
|
Type of the resource. This is always "tasks#taskList". |
selfLink |
selfLink: |
Type : void
|
Defined in src/gsuite/tasks/tasklist.model.ts:29
|
URL pointing to this task list. Used to retrieve, update, or delete this task list. |
title |
title: |
Type : void
|
Defined in src/gsuite/tasks/tasklist.model.ts:21
|
Title of the task list. |
updated |
updated: |
Type : Date
|
Defined in src/gsuite/tasks/tasklist.model.ts:25
|
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;
}