File

src/apis/tasks/v1.ts

Index

Properties
Methods

Constructor

constructor(context: APIRequestContext)
Parameters :
Name Type Optional
context APIRequestContext No

Properties

context
Type : APIRequestContext

Methods

clear
clear(params: Params$Resource$Tasks$Clear, options: StreamMethodOptions)

Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.

// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require('googleapis');
const tasks = google.tasks('v1');

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: ['https://www.googleapis.com/auth/tasks'],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.clear({
    // Task list identifier.
    tasklist: 'placeholder-value',
  });
  console.log(res.data);
}

main().catch(e => {
  console.error(e);
  throw e;
});
Parameters :
Name Type Optional Description
params Params$Resource$Tasks$Clear No
  • Parameters for request
options StreamMethodOptions No
  • Optionally override request options, such as url, method, and encoding.
Example :
<pre><code class="language-js">// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require(&#39;googleapis&#39;);
const tasks = google.tasks(&#39;v1&#39;);

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [&#39;https://www.googleapis.com/auth/tasks&#39;],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.clear({
    // Task list identifier.
    tasklist: &#39;placeholder-value&#39;,
  });
  console.log(res.data);
}

main().catch(e =&gt; {
  console.error(e);
  throw e;
});
</code></pre>
Returns : GaxiosPromise<Readable>

A promise if used with async/await, or void if used with a callback.

clear
clear(params?: Params$Resource$Tasks$Clear, options?: MethodOptions)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Clear Yes
options MethodOptions Yes
Returns : GaxiosPromise<void>
clear
clear(params: Params$Resource$Tasks$Clear, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Clear No
options StreamMethodOptions | BodyResponseCallback<Readable> No
callback BodyResponseCallback<Readable> No
Returns : void
clear
clear(params: Params$Resource$Tasks$Clear, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Clear No
options MethodOptions | BodyResponseCallback<void> No
callback BodyResponseCallback<void> No
Returns : void
clear
clear(params: Params$Resource$Tasks$Clear, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Clear No
callback BodyResponseCallback<void> No
Returns : void
clear
clear(callback: BodyResponseCallback)
Parameters :
Name Type Optional
callback BodyResponseCallback<void> No
Returns : void
clear
clear(paramsOrCallback?: Params$Resource$Tasks$Clear | BodyResponseCallback<void> | BodyResponseCallback<Readable>, optionsOrCallback?: MethodOptions | StreamMethodOptions | BodyResponseCallback<void> | BodyResponseCallback<Readable>, callback?: BodyResponseCallback | BodyResponseCallback)
Parameters :
Name Type Optional
paramsOrCallback Params$Resource$Tasks$Clear | BodyResponseCallback<void> | BodyResponseCallback<Readable> Yes
optionsOrCallback MethodOptions | StreamMethodOptions | BodyResponseCallback<void> | BodyResponseCallback<Readable> Yes
callback BodyResponseCallback<void> | BodyResponseCallback<Readable> Yes
Returns : void | GaxiosPromise | GaxiosPromise
delete
delete(params: Params$Resource$Tasks$Delete, options: StreamMethodOptions)

Deletes the specified task from the task list.

// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require('googleapis');
const tasks = google.tasks('v1');

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: ['https://www.googleapis.com/auth/tasks'],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.delete({
    // Task identifier.
    task: 'placeholder-value',
    // Task list identifier.
    tasklist: 'placeholder-value',
  });
  console.log(res.data);
}

main().catch(e => {
  console.error(e);
  throw e;
});
Parameters :
Name Type Optional Description
params Params$Resource$Tasks$Delete No
  • Parameters for request
options StreamMethodOptions No
  • Optionally override request options, such as url, method, and encoding.
Example :
<pre><code class="language-js">// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require(&#39;googleapis&#39;);
const tasks = google.tasks(&#39;v1&#39;);

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [&#39;https://www.googleapis.com/auth/tasks&#39;],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.delete({
    // Task identifier.
    task: &#39;placeholder-value&#39;,
    // Task list identifier.
    tasklist: &#39;placeholder-value&#39;,
  });
  console.log(res.data);
}

main().catch(e =&gt; {
  console.error(e);
  throw e;
});
</code></pre>
Returns : GaxiosPromise<Readable>

A promise if used with async/await, or void if used with a callback.

delete
delete(params?: Params$Resource$Tasks$Delete, options?: MethodOptions)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Delete Yes
options MethodOptions Yes
Returns : GaxiosPromise<void>
delete
delete(params: Params$Resource$Tasks$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Delete No
options StreamMethodOptions | BodyResponseCallback<Readable> No
callback BodyResponseCallback<Readable> No
Returns : void
delete
delete(params: Params$Resource$Tasks$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Delete No
options MethodOptions | BodyResponseCallback<void> No
callback BodyResponseCallback<void> No
Returns : void
delete
delete(params: Params$Resource$Tasks$Delete, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Delete No
callback BodyResponseCallback<void> No
Returns : void
delete
delete(callback: BodyResponseCallback)
Parameters :
Name Type Optional
callback BodyResponseCallback<void> No
Returns : void
delete
delete(paramsOrCallback?: Params$Resource$Tasks$Delete | BodyResponseCallback<void> | BodyResponseCallback<Readable>, optionsOrCallback?: MethodOptions | StreamMethodOptions | BodyResponseCallback<void> | BodyResponseCallback<Readable>, callback?: BodyResponseCallback | BodyResponseCallback)
Parameters :
Name Type Optional
paramsOrCallback Params$Resource$Tasks$Delete | BodyResponseCallback<void> | BodyResponseCallback<Readable> Yes
optionsOrCallback MethodOptions | StreamMethodOptions | BodyResponseCallback<void> | BodyResponseCallback<Readable> Yes
callback BodyResponseCallback<void> | BodyResponseCallback<Readable> Yes
Returns : void | GaxiosPromise | GaxiosPromise
get
get(params: Params$Resource$Tasks$Get, options: StreamMethodOptions)

Returns the specified task.

// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require('googleapis');
const tasks = google.tasks('v1');

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [
      'https://www.googleapis.com/auth/tasks',
      'https://www.googleapis.com/auth/tasks.readonly',
    ],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.get({
    // Task identifier.
    task: 'placeholder-value',
    // Task list identifier.
    tasklist: 'placeholder-value',
  });
  console.log(res.data);

  // Example response
  // {
  //   "completed": "my_completed",
  //   "deleted": false,
  //   "due": "my_due",
  //   "etag": "my_etag",
  //   "hidden": false,
  //   "id": "my_id",
  //   "kind": "my_kind",
  //   "links": [],
  //   "notes": "my_notes",
  //   "parent": "my_parent",
  //   "position": "my_position",
  //   "selfLink": "my_selfLink",
  //   "status": "my_status",
  //   "title": "my_title",
  //   "updated": "my_updated"
  // }
}

main().catch(e => {
  console.error(e);
  throw e;
});
Parameters :
Name Type Optional Description
params Params$Resource$Tasks$Get No
  • Parameters for request
options StreamMethodOptions No
  • Optionally override request options, such as url, method, and encoding.
Example :
<pre><code class="language-js">// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require(&#39;googleapis&#39;);
const tasks = google.tasks(&#39;v1&#39;);

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [
      &#39;https://www.googleapis.com/auth/tasks&#39;,
      &#39;https://www.googleapis.com/auth/tasks.readonly&#39;,
    ],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.get({
    // Task identifier.
    task: &#39;placeholder-value&#39;,
    // Task list identifier.
    tasklist: &#39;placeholder-value&#39;,
  });
  console.log(res.data);

  // Example response
  // {
  //   &quot;completed&quot;: &quot;my_completed&quot;,
  //   &quot;deleted&quot;: false,
  //   &quot;due&quot;: &quot;my_due&quot;,
  //   &quot;etag&quot;: &quot;my_etag&quot;,
  //   &quot;hidden&quot;: false,
  //   &quot;id&quot;: &quot;my_id&quot;,
  //   &quot;kind&quot;: &quot;my_kind&quot;,
  //   &quot;links&quot;: [],
  //   &quot;notes&quot;: &quot;my_notes&quot;,
  //   &quot;parent&quot;: &quot;my_parent&quot;,
  //   &quot;position&quot;: &quot;my_position&quot;,
  //   &quot;selfLink&quot;: &quot;my_selfLink&quot;,
  //   &quot;status&quot;: &quot;my_status&quot;,
  //   &quot;title&quot;: &quot;my_title&quot;,
  //   &quot;updated&quot;: &quot;my_updated&quot;
  // }
}

main().catch(e =&gt; {
  console.error(e);
  throw e;
});
</code></pre>
Returns : GaxiosPromise<Readable>

A promise if used with async/await, or void if used with a callback.

get
get(params?: Params$Resource$Tasks$Get, options?: MethodOptions)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Get Yes
options MethodOptions Yes
get
get(params: Params$Resource$Tasks$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Get No
options StreamMethodOptions | BodyResponseCallback<Readable> No
callback BodyResponseCallback<Readable> No
Returns : void
get
get(params: Params$Resource$Tasks$Get, options: MethodOptions | BodyResponseCallback, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Get No
options MethodOptions | BodyResponseCallback<Schema$Task> No
callback BodyResponseCallback<Schema$Task> No
Returns : void
get
get(params: Params$Resource$Tasks$Get, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Get No
callback BodyResponseCallback<Schema$Task> No
Returns : void
get
get(callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
callback BodyResponseCallback<Schema$Task> No
Returns : void
get
get(paramsOrCallback?: Params$Resource$Tasks$Get | BodyResponseCallback | BodyResponseCallback, optionsOrCallback?: MethodOptions | StreamMethodOptions | BodyResponseCallback | BodyResponseCallback, callback?: BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable>)
Parameters :
Name Type Optional
paramsOrCallback Params$Resource$Tasks$Get | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
optionsOrCallback MethodOptions | StreamMethodOptions | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
callback BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
Returns : void | GaxiosPromise | GaxiosPromise
insert
insert(params: Params$Resource$Tasks$Insert, options: StreamMethodOptions)

Creates a new task on the specified task list.

// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require('googleapis');
const tasks = google.tasks('v1');

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: ['https://www.googleapis.com/auth/tasks'],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.insert({
    // Parent task identifier. If the task is created at the top level, this parameter is omitted. Optional.
    parent: 'placeholder-value',
    // Previous sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted. Optional.
    previous: 'placeholder-value',
    // Task list identifier.
    tasklist: 'placeholder-value',

    // Request body metadata
    requestBody: {
      // request body parameters
      // {
      //   "completed": "my_completed",
      //   "deleted": false,
      //   "due": "my_due",
      //   "etag": "my_etag",
      //   "hidden": false,
      //   "id": "my_id",
      //   "kind": "my_kind",
      //   "links": [],
      //   "notes": "my_notes",
      //   "parent": "my_parent",
      //   "position": "my_position",
      //   "selfLink": "my_selfLink",
      //   "status": "my_status",
      //   "title": "my_title",
      //   "updated": "my_updated"
      // }
    },
  });
  console.log(res.data);

  // Example response
  // {
  //   "completed": "my_completed",
  //   "deleted": false,
  //   "due": "my_due",
  //   "etag": "my_etag",
  //   "hidden": false,
  //   "id": "my_id",
  //   "kind": "my_kind",
  //   "links": [],
  //   "notes": "my_notes",
  //   "parent": "my_parent",
  //   "position": "my_position",
  //   "selfLink": "my_selfLink",
  //   "status": "my_status",
  //   "title": "my_title",
  //   "updated": "my_updated"
  // }
}

main().catch(e => {
  console.error(e);
  throw e;
});
Parameters :
Name Type Optional Description
params Params$Resource$Tasks$Insert No
  • Parameters for request
options StreamMethodOptions No
  • Optionally override request options, such as url, method, and encoding.
Example :
<pre><code class="language-js">// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require(&#39;googleapis&#39;);
const tasks = google.tasks(&#39;v1&#39;);

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [&#39;https://www.googleapis.com/auth/tasks&#39;],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.insert({
    // Parent task identifier. If the task is created at the top level, this parameter is omitted. Optional.
    parent: &#39;placeholder-value&#39;,
    // Previous sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted. Optional.
    previous: &#39;placeholder-value&#39;,
    // Task list identifier.
    tasklist: &#39;placeholder-value&#39;,

    // Request body metadata
    requestBody: {
      // request body parameters
      // {
      //   &quot;completed&quot;: &quot;my_completed&quot;,
      //   &quot;deleted&quot;: false,
      //   &quot;due&quot;: &quot;my_due&quot;,
      //   &quot;etag&quot;: &quot;my_etag&quot;,
      //   &quot;hidden&quot;: false,
      //   &quot;id&quot;: &quot;my_id&quot;,
      //   &quot;kind&quot;: &quot;my_kind&quot;,
      //   &quot;links&quot;: [],
      //   &quot;notes&quot;: &quot;my_notes&quot;,
      //   &quot;parent&quot;: &quot;my_parent&quot;,
      //   &quot;position&quot;: &quot;my_position&quot;,
      //   &quot;selfLink&quot;: &quot;my_selfLink&quot;,
      //   &quot;status&quot;: &quot;my_status&quot;,
      //   &quot;title&quot;: &quot;my_title&quot;,
      //   &quot;updated&quot;: &quot;my_updated&quot;
      // }
    },
  });
  console.log(res.data);

  // Example response
  // {
  //   &quot;completed&quot;: &quot;my_completed&quot;,
  //   &quot;deleted&quot;: false,
  //   &quot;due&quot;: &quot;my_due&quot;,
  //   &quot;etag&quot;: &quot;my_etag&quot;,
  //   &quot;hidden&quot;: false,
  //   &quot;id&quot;: &quot;my_id&quot;,
  //   &quot;kind&quot;: &quot;my_kind&quot;,
  //   &quot;links&quot;: [],
  //   &quot;notes&quot;: &quot;my_notes&quot;,
  //   &quot;parent&quot;: &quot;my_parent&quot;,
  //   &quot;position&quot;: &quot;my_position&quot;,
  //   &quot;selfLink&quot;: &quot;my_selfLink&quot;,
  //   &quot;status&quot;: &quot;my_status&quot;,
  //   &quot;title&quot;: &quot;my_title&quot;,
  //   &quot;updated&quot;: &quot;my_updated&quot;
  // }
}

main().catch(e =&gt; {
  console.error(e);
  throw e;
});
</code></pre>
Returns : GaxiosPromise<Readable>

A promise if used with async/await, or void if used with a callback.

insert
insert(params?: Params$Resource$Tasks$Insert, options?: MethodOptions)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Insert Yes
options MethodOptions Yes
insert
insert(params: Params$Resource$Tasks$Insert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Insert No
options StreamMethodOptions | BodyResponseCallback<Readable> No
callback BodyResponseCallback<Readable> No
Returns : void
insert
insert(params: Params$Resource$Tasks$Insert, options: MethodOptions | BodyResponseCallback, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Insert No
options MethodOptions | BodyResponseCallback<Schema$Task> No
callback BodyResponseCallback<Schema$Task> No
Returns : void
insert
insert(params: Params$Resource$Tasks$Insert, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Insert No
callback BodyResponseCallback<Schema$Task> No
Returns : void
insert
insert(callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
callback BodyResponseCallback<Schema$Task> No
Returns : void
insert
insert(paramsOrCallback?: Params$Resource$Tasks$Insert | BodyResponseCallback | BodyResponseCallback, optionsOrCallback?: MethodOptions | StreamMethodOptions | BodyResponseCallback | BodyResponseCallback, callback?: BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable>)
Parameters :
Name Type Optional
paramsOrCallback Params$Resource$Tasks$Insert | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
optionsOrCallback MethodOptions | StreamMethodOptions | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
callback BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
Returns : void | GaxiosPromise | GaxiosPromise
list
list(params: Params$Resource$Tasks$List, options: StreamMethodOptions)

Returns all tasks in the specified task list.

// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require('googleapis');
const tasks = google.tasks('v1');

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [
      'https://www.googleapis.com/auth/tasks',
      'https://www.googleapis.com/auth/tasks.readonly',
    ],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.list({
    // 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.
    completedMax: 'placeholder-value',
    // 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.
    completedMin: 'placeholder-value',
    // 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.
    dueMax: 'placeholder-value',
    // 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.
    dueMin: 'placeholder-value',
    // Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
    maxResults: 'placeholder-value',
    // Token specifying the result page to return. Optional.
    pageToken: 'placeholder-value',
    // 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.
    showCompleted: 'placeholder-value',
    // Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.
    showDeleted: 'placeholder-value',
    // Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.
    showHidden: 'placeholder-value',
    // Task list identifier.
    tasklist: 'placeholder-value',
    // 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.
    updatedMin: 'placeholder-value',
  });
  console.log(res.data);

  // Example response
  // {
  //   "etag": "my_etag",
  //   "items": [],
  //   "kind": "my_kind",
  //   "nextPageToken": "my_nextPageToken"
  // }
}

main().catch(e => {
  console.error(e);
  throw e;
});
Parameters :
Name Type Optional Description
params Params$Resource$Tasks$List No
  • Parameters for request
options StreamMethodOptions No
  • Optionally override request options, such as url, method, and encoding.
Example :
<pre><code class="language-js">// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require(&#39;googleapis&#39;);
const tasks = google.tasks(&#39;v1&#39;);

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [
      &#39;https://www.googleapis.com/auth/tasks&#39;,
      &#39;https://www.googleapis.com/auth/tasks.readonly&#39;,
    ],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.list({
    // Upper bound for a task&#39;s completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
    completedMax: &#39;placeholder-value&#39;,
    // Lower bound for a task&#39;s completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
    completedMin: &#39;placeholder-value&#39;,
    // Upper bound for a task&#39;s due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
    dueMax: &#39;placeholder-value&#39;,
    // Lower bound for a task&#39;s due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
    dueMin: &#39;placeholder-value&#39;,
    // Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
    maxResults: &#39;placeholder-value&#39;,
    // Token specifying the result page to return. Optional.
    pageToken: &#39;placeholder-value&#39;,
    // 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&#39;s mobile apps.
    showCompleted: &#39;placeholder-value&#39;,
    // Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.
    showDeleted: &#39;placeholder-value&#39;,
    // Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.
    showHidden: &#39;placeholder-value&#39;,
    // Task list identifier.
    tasklist: &#39;placeholder-value&#39;,
    // Lower bound for a task&#39;s last modification time (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by last modification time.
    updatedMin: &#39;placeholder-value&#39;,
  });
  console.log(res.data);

  // Example response
  // {
  //   &quot;etag&quot;: &quot;my_etag&quot;,
  //   &quot;items&quot;: [],
  //   &quot;kind&quot;: &quot;my_kind&quot;,
  //   &quot;nextPageToken&quot;: &quot;my_nextPageToken&quot;
  // }
}

main().catch(e =&gt; {
  console.error(e);
  throw e;
});
</code></pre>
Returns : GaxiosPromise<Readable>

A promise if used with async/await, or void if used with a callback.

list
list(params?: Params$Resource$Tasks$List, options?: MethodOptions)
Parameters :
Name Type Optional
params Params$Resource$Tasks$List Yes
options MethodOptions Yes
list
list(params: Params$Resource$Tasks$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$List No
options StreamMethodOptions | BodyResponseCallback<Readable> No
callback BodyResponseCallback<Readable> No
Returns : void
list
list(params: Params$Resource$Tasks$List, options: MethodOptions | BodyResponseCallback<Schema$Tasks>, callback: BodyResponseCallback<Schema$Tasks>)
Returns : void
list
list(params: Params$Resource$Tasks$List, callback: BodyResponseCallback<Schema$Tasks>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$List No
callback BodyResponseCallback<Schema$Tasks> No
Returns : void
list
list(callback: BodyResponseCallback<Schema$Tasks>)
Parameters :
Name Type Optional
callback BodyResponseCallback<Schema$Tasks> No
Returns : void
list
list(paramsOrCallback?: Params$Resource$Tasks$List | BodyResponseCallback | BodyResponseCallback, optionsOrCallback?: MethodOptions | StreamMethodOptions | BodyResponseCallback<Schema$Tasks> | BodyResponseCallback<Readable>, callback?: BodyResponseCallback<Schema$Tasks> | BodyResponseCallback<Readable>)
Parameters :
Name Type Optional
paramsOrCallback Params$Resource$Tasks$List | BodyResponseCallback<Schema$Tasks> | BodyResponseCallback<Readable> Yes
optionsOrCallback MethodOptions | StreamMethodOptions | BodyResponseCallback<Schema$Tasks> | BodyResponseCallback<Readable> Yes
callback BodyResponseCallback<Schema$Tasks> | BodyResponseCallback<Readable> Yes
Returns : void | GaxiosPromise | GaxiosPromise
move
move(params: Params$Resource$Tasks$Move, options: StreamMethodOptions)

Moves the specified task to another position in the task list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks.

// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require('googleapis');
const tasks = google.tasks('v1');

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: ['https://www.googleapis.com/auth/tasks'],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.move({
    // New parent task identifier. If the task is moved to the top level, this parameter is omitted. Optional.
    parent: 'placeholder-value',
    // New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.
    previous: 'placeholder-value',
    // Task identifier.
    task: 'placeholder-value',
    // Task list identifier.
    tasklist: 'placeholder-value',
  });
  console.log(res.data);

  // Example response
  // {
  //   "completed": "my_completed",
  //   "deleted": false,
  //   "due": "my_due",
  //   "etag": "my_etag",
  //   "hidden": false,
  //   "id": "my_id",
  //   "kind": "my_kind",
  //   "links": [],
  //   "notes": "my_notes",
  //   "parent": "my_parent",
  //   "position": "my_position",
  //   "selfLink": "my_selfLink",
  //   "status": "my_status",
  //   "title": "my_title",
  //   "updated": "my_updated"
  // }
}

main().catch(e => {
  console.error(e);
  throw e;
});
Parameters :
Name Type Optional Description
params Params$Resource$Tasks$Move No
  • Parameters for request
options StreamMethodOptions No
  • Optionally override request options, such as url, method, and encoding.
Example :
<pre><code class="language-js">// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require(&#39;googleapis&#39;);
const tasks = google.tasks(&#39;v1&#39;);

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [&#39;https://www.googleapis.com/auth/tasks&#39;],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.move({
    // New parent task identifier. If the task is moved to the top level, this parameter is omitted. Optional.
    parent: &#39;placeholder-value&#39;,
    // New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.
    previous: &#39;placeholder-value&#39;,
    // Task identifier.
    task: &#39;placeholder-value&#39;,
    // Task list identifier.
    tasklist: &#39;placeholder-value&#39;,
  });
  console.log(res.data);

  // Example response
  // {
  //   &quot;completed&quot;: &quot;my_completed&quot;,
  //   &quot;deleted&quot;: false,
  //   &quot;due&quot;: &quot;my_due&quot;,
  //   &quot;etag&quot;: &quot;my_etag&quot;,
  //   &quot;hidden&quot;: false,
  //   &quot;id&quot;: &quot;my_id&quot;,
  //   &quot;kind&quot;: &quot;my_kind&quot;,
  //   &quot;links&quot;: [],
  //   &quot;notes&quot;: &quot;my_notes&quot;,
  //   &quot;parent&quot;: &quot;my_parent&quot;,
  //   &quot;position&quot;: &quot;my_position&quot;,
  //   &quot;selfLink&quot;: &quot;my_selfLink&quot;,
  //   &quot;status&quot;: &quot;my_status&quot;,
  //   &quot;title&quot;: &quot;my_title&quot;,
  //   &quot;updated&quot;: &quot;my_updated&quot;
  // }
}

main().catch(e =&gt; {
  console.error(e);
  throw e;
});
</code></pre>
Returns : GaxiosPromise<Readable>

A promise if used with async/await, or void if used with a callback.

move
move(params?: Params$Resource$Tasks$Move, options?: MethodOptions)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Move Yes
options MethodOptions Yes
move
move(params: Params$Resource$Tasks$Move, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Move No
options StreamMethodOptions | BodyResponseCallback<Readable> No
callback BodyResponseCallback<Readable> No
Returns : void
move
move(params: Params$Resource$Tasks$Move, options: MethodOptions | BodyResponseCallback, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Move No
options MethodOptions | BodyResponseCallback<Schema$Task> No
callback BodyResponseCallback<Schema$Task> No
Returns : void
move
move(params: Params$Resource$Tasks$Move, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Move No
callback BodyResponseCallback<Schema$Task> No
Returns : void
move
move(callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
callback BodyResponseCallback<Schema$Task> No
Returns : void
move
move(paramsOrCallback?: Params$Resource$Tasks$Move | BodyResponseCallback | BodyResponseCallback, optionsOrCallback?: MethodOptions | StreamMethodOptions | BodyResponseCallback | BodyResponseCallback, callback?: BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable>)
Parameters :
Name Type Optional
paramsOrCallback Params$Resource$Tasks$Move | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
optionsOrCallback MethodOptions | StreamMethodOptions | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
callback BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
Returns : void | GaxiosPromise | GaxiosPromise
patch
patch(params: Params$Resource$Tasks$Patch, options: StreamMethodOptions)

Updates the specified task. This method supports patch semantics.

// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require('googleapis');
const tasks = google.tasks('v1');

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: ['https://www.googleapis.com/auth/tasks'],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.patch({
    // Task identifier.
    task: 'placeholder-value',
    // Task list identifier.
    tasklist: 'placeholder-value',

    // Request body metadata
    requestBody: {
      // request body parameters
      // {
      //   "completed": "my_completed",
      //   "deleted": false,
      //   "due": "my_due",
      //   "etag": "my_etag",
      //   "hidden": false,
      //   "id": "my_id",
      //   "kind": "my_kind",
      //   "links": [],
      //   "notes": "my_notes",
      //   "parent": "my_parent",
      //   "position": "my_position",
      //   "selfLink": "my_selfLink",
      //   "status": "my_status",
      //   "title": "my_title",
      //   "updated": "my_updated"
      // }
    },
  });
  console.log(res.data);

  // Example response
  // {
  //   "completed": "my_completed",
  //   "deleted": false,
  //   "due": "my_due",
  //   "etag": "my_etag",
  //   "hidden": false,
  //   "id": "my_id",
  //   "kind": "my_kind",
  //   "links": [],
  //   "notes": "my_notes",
  //   "parent": "my_parent",
  //   "position": "my_position",
  //   "selfLink": "my_selfLink",
  //   "status": "my_status",
  //   "title": "my_title",
  //   "updated": "my_updated"
  // }
}

main().catch(e => {
  console.error(e);
  throw e;
});
Parameters :
Name Type Optional Description
params Params$Resource$Tasks$Patch No
  • Parameters for request
options StreamMethodOptions No
  • Optionally override request options, such as url, method, and encoding.
Example :
<pre><code class="language-js">// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require(&#39;googleapis&#39;);
const tasks = google.tasks(&#39;v1&#39;);

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [&#39;https://www.googleapis.com/auth/tasks&#39;],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.patch({
    // Task identifier.
    task: &#39;placeholder-value&#39;,
    // Task list identifier.
    tasklist: &#39;placeholder-value&#39;,

    // Request body metadata
    requestBody: {
      // request body parameters
      // {
      //   &quot;completed&quot;: &quot;my_completed&quot;,
      //   &quot;deleted&quot;: false,
      //   &quot;due&quot;: &quot;my_due&quot;,
      //   &quot;etag&quot;: &quot;my_etag&quot;,
      //   &quot;hidden&quot;: false,
      //   &quot;id&quot;: &quot;my_id&quot;,
      //   &quot;kind&quot;: &quot;my_kind&quot;,
      //   &quot;links&quot;: [],
      //   &quot;notes&quot;: &quot;my_notes&quot;,
      //   &quot;parent&quot;: &quot;my_parent&quot;,
      //   &quot;position&quot;: &quot;my_position&quot;,
      //   &quot;selfLink&quot;: &quot;my_selfLink&quot;,
      //   &quot;status&quot;: &quot;my_status&quot;,
      //   &quot;title&quot;: &quot;my_title&quot;,
      //   &quot;updated&quot;: &quot;my_updated&quot;
      // }
    },
  });
  console.log(res.data);

  // Example response
  // {
  //   &quot;completed&quot;: &quot;my_completed&quot;,
  //   &quot;deleted&quot;: false,
  //   &quot;due&quot;: &quot;my_due&quot;,
  //   &quot;etag&quot;: &quot;my_etag&quot;,
  //   &quot;hidden&quot;: false,
  //   &quot;id&quot;: &quot;my_id&quot;,
  //   &quot;kind&quot;: &quot;my_kind&quot;,
  //   &quot;links&quot;: [],
  //   &quot;notes&quot;: &quot;my_notes&quot;,
  //   &quot;parent&quot;: &quot;my_parent&quot;,
  //   &quot;position&quot;: &quot;my_position&quot;,
  //   &quot;selfLink&quot;: &quot;my_selfLink&quot;,
  //   &quot;status&quot;: &quot;my_status&quot;,
  //   &quot;title&quot;: &quot;my_title&quot;,
  //   &quot;updated&quot;: &quot;my_updated&quot;
  // }
}

main().catch(e =&gt; {
  console.error(e);
  throw e;
});
</code></pre>
Returns : GaxiosPromise<Readable>

A promise if used with async/await, or void if used with a callback.

patch
patch(params?: Params$Resource$Tasks$Patch, options?: MethodOptions)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Patch Yes
options MethodOptions Yes
patch
patch(params: Params$Resource$Tasks$Patch, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Patch No
options StreamMethodOptions | BodyResponseCallback<Readable> No
callback BodyResponseCallback<Readable> No
Returns : void
patch
patch(params: Params$Resource$Tasks$Patch, options: MethodOptions | BodyResponseCallback, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Patch No
options MethodOptions | BodyResponseCallback<Schema$Task> No
callback BodyResponseCallback<Schema$Task> No
Returns : void
patch
patch(params: Params$Resource$Tasks$Patch, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Patch No
callback BodyResponseCallback<Schema$Task> No
Returns : void
patch
patch(callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
callback BodyResponseCallback<Schema$Task> No
Returns : void
patch
patch(paramsOrCallback?: Params$Resource$Tasks$Patch | BodyResponseCallback | BodyResponseCallback, optionsOrCallback?: MethodOptions | StreamMethodOptions | BodyResponseCallback | BodyResponseCallback, callback?: BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable>)
Parameters :
Name Type Optional
paramsOrCallback Params$Resource$Tasks$Patch | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
optionsOrCallback MethodOptions | StreamMethodOptions | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
callback BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
Returns : void | GaxiosPromise | GaxiosPromise
update
update(params: Params$Resource$Tasks$Update, options: StreamMethodOptions)

Updates the specified task.

// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require('googleapis');
const tasks = google.tasks('v1');

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: ['https://www.googleapis.com/auth/tasks'],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.update({
    // Task identifier.
    task: 'placeholder-value',
    // Task list identifier.
    tasklist: 'placeholder-value',

    // Request body metadata
    requestBody: {
      // request body parameters
      // {
      //   "completed": "my_completed",
      //   "deleted": false,
      //   "due": "my_due",
      //   "etag": "my_etag",
      //   "hidden": false,
      //   "id": "my_id",
      //   "kind": "my_kind",
      //   "links": [],
      //   "notes": "my_notes",
      //   "parent": "my_parent",
      //   "position": "my_position",
      //   "selfLink": "my_selfLink",
      //   "status": "my_status",
      //   "title": "my_title",
      //   "updated": "my_updated"
      // }
    },
  });
  console.log(res.data);

  // Example response
  // {
  //   "completed": "my_completed",
  //   "deleted": false,
  //   "due": "my_due",
  //   "etag": "my_etag",
  //   "hidden": false,
  //   "id": "my_id",
  //   "kind": "my_kind",
  //   "links": [],
  //   "notes": "my_notes",
  //   "parent": "my_parent",
  //   "position": "my_position",
  //   "selfLink": "my_selfLink",
  //   "status": "my_status",
  //   "title": "my_title",
  //   "updated": "my_updated"
  // }
}

main().catch(e => {
  console.error(e);
  throw e;
});
Parameters :
Name Type Optional Description
params Params$Resource$Tasks$Update No
  • Parameters for request
options StreamMethodOptions No
  • Optionally override request options, such as url, method, and encoding.
Example :
<pre><code class="language-js">// Before running the sample:
// - Enable the API at:
//   https://console.developers.google.com/apis/api/tasks.googleapis.com
// - Login into gcloud by running:
//   `$ gcloud auth application-default login`
// - Install the npm module by running:
//   `$ npm install googleapis`

const {google} = require(&#39;googleapis&#39;);
const tasks = google.tasks(&#39;v1&#39;);

async function main() {
  const auth = new google.auth.GoogleAuth({
    // Scopes can be specified either as an array or as a single, space-delimited string.
    scopes: [&#39;https://www.googleapis.com/auth/tasks&#39;],
  });

  // Acquire an auth client, and bind it to all future calls
  const authClient = await auth.getClient();
  google.options({auth: authClient});

  // Do the magic
  const res = await tasks.tasks.update({
    // Task identifier.
    task: &#39;placeholder-value&#39;,
    // Task list identifier.
    tasklist: &#39;placeholder-value&#39;,

    // Request body metadata
    requestBody: {
      // request body parameters
      // {
      //   &quot;completed&quot;: &quot;my_completed&quot;,
      //   &quot;deleted&quot;: false,
      //   &quot;due&quot;: &quot;my_due&quot;,
      //   &quot;etag&quot;: &quot;my_etag&quot;,
      //   &quot;hidden&quot;: false,
      //   &quot;id&quot;: &quot;my_id&quot;,
      //   &quot;kind&quot;: &quot;my_kind&quot;,
      //   &quot;links&quot;: [],
      //   &quot;notes&quot;: &quot;my_notes&quot;,
      //   &quot;parent&quot;: &quot;my_parent&quot;,
      //   &quot;position&quot;: &quot;my_position&quot;,
      //   &quot;selfLink&quot;: &quot;my_selfLink&quot;,
      //   &quot;status&quot;: &quot;my_status&quot;,
      //   &quot;title&quot;: &quot;my_title&quot;,
      //   &quot;updated&quot;: &quot;my_updated&quot;
      // }
    },
  });
  console.log(res.data);

  // Example response
  // {
  //   &quot;completed&quot;: &quot;my_completed&quot;,
  //   &quot;deleted&quot;: false,
  //   &quot;due&quot;: &quot;my_due&quot;,
  //   &quot;etag&quot;: &quot;my_etag&quot;,
  //   &quot;hidden&quot;: false,
  //   &quot;id&quot;: &quot;my_id&quot;,
  //   &quot;kind&quot;: &quot;my_kind&quot;,
  //   &quot;links&quot;: [],
  //   &quot;notes&quot;: &quot;my_notes&quot;,
  //   &quot;parent&quot;: &quot;my_parent&quot;,
  //   &quot;position&quot;: &quot;my_position&quot;,
  //   &quot;selfLink&quot;: &quot;my_selfLink&quot;,
  //   &quot;status&quot;: &quot;my_status&quot;,
  //   &quot;title&quot;: &quot;my_title&quot;,
  //   &quot;updated&quot;: &quot;my_updated&quot;
  // }
}

main().catch(e =&gt; {
  console.error(e);
  throw e;
});
</code></pre>
Returns : GaxiosPromise<Readable>

A promise if used with async/await, or void if used with a callback.

update
update(params?: Params$Resource$Tasks$Update, options?: MethodOptions)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Update Yes
options MethodOptions Yes
update
update(params: Params$Resource$Tasks$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Update No
options StreamMethodOptions | BodyResponseCallback<Readable> No
callback BodyResponseCallback<Readable> No
Returns : void
update
update(params: Params$Resource$Tasks$Update, options: MethodOptions | BodyResponseCallback, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Update No
options MethodOptions | BodyResponseCallback<Schema$Task> No
callback BodyResponseCallback<Schema$Task> No
Returns : void
update
update(params: Params$Resource$Tasks$Update, callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
params Params$Resource$Tasks$Update No
callback BodyResponseCallback<Schema$Task> No
Returns : void
update
update(callback: BodyResponseCallback<Schema$Task>)
Parameters :
Name Type Optional
callback BodyResponseCallback<Schema$Task> No
Returns : void
update
update(paramsOrCallback?: Params$Resource$Tasks$Update | BodyResponseCallback | BodyResponseCallback, optionsOrCallback?: MethodOptions | StreamMethodOptions | BodyResponseCallback | BodyResponseCallback, callback?: BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable>)
Parameters :
Name Type Optional
paramsOrCallback Params$Resource$Tasks$Update | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
optionsOrCallback MethodOptions | StreamMethodOptions | BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
callback BodyResponseCallback<Schema$Task> | BodyResponseCallback<Readable> Yes
Returns : void | GaxiosPromise | GaxiosPromise
import {
  OAuth2Client,
  JWT,
  Compute,
  UserRefreshClient,
  BaseExternalAccountClient,
  GaxiosPromise,
  GoogleConfigurable,
  createAPIRequest,
  MethodOptions,
  StreamMethodOptions,
  GlobalOptions,
  GoogleAuth,
  BodyResponseCallback,
  APIRequestContext,
} from 'googleapis-common';
import {Readable} from 'stream';

export namespace tasks_v1 {
  export interface Options extends GlobalOptions {
    version: 'v1';
  }

  interface StandardParameters {
    /**
     * Auth client or API Key for the request
     */
    auth?:
      | string
      | OAuth2Client
      | JWT
      | Compute
      | UserRefreshClient
      | BaseExternalAccountClient
      | GoogleAuth;

    /**
     * V1 error format.
     */
    '$.xgafv'?: string;
    /**
     * OAuth access token.
     */
    access_token?: string;
    /**
     * Data format for response.
     */
    alt?: string;
    /**
     * JSONP
     */
    callback?: string;
    /**
     * Selector specifying which fields to include in a partial response.
     */
    fields?: string;
    /**
     * API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
     */
    key?: string;
    /**
     * OAuth 2.0 token for the current user.
     */
    oauth_token?: string;
    /**
     * Returns response with indentations and line breaks.
     */
    prettyPrint?: boolean;
    /**
     * Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
     */
    quotaUser?: string;
    /**
     * Legacy upload protocol for media (e.g. "media", "multipart").
     */
    uploadType?: string;
    /**
     * Upload protocol for media (e.g. "raw", "multipart").
     */
    upload_protocol?: string;
  }

  /**
   * Tasks API
   *
   * The Google Tasks API lets you manage your tasks and task lists.
   *
   * @example
   * ```js
   * const {google} = require('googleapis');
   * const tasks = google.tasks('v1');
   * ```
   */
  export class Tasks {
    context: APIRequestContext;
    tasklists: Resource$Tasklists;
    tasks: Resource$Tasks;

    constructor(options: GlobalOptions, google?: GoogleConfigurable) {
      this.context = {
        _options: options || {},
        google,
      };

      this.tasklists = new Resource$Tasklists(this.context);
      this.tasks = new Resource$Tasks(this.context);
    }
  }

  export interface Schema$Task {
    /**
     * Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
     */
    completed?: string | null;
    /**
     * Flag indicating whether the task has been deleted. The default is False.
     */
    deleted?: boolean | null;
    /**
     * Due date of the task (as a RFC 3339 timestamp). Optional. The due date only records date information; the time portion of the timestamp is discarded when setting the due date. It isn't possible to read or write the time that a task is due via the API.
     */
    due?: string | null;
    /**
     * ETag of the resource.
     */
    etag?: string | null;
    /**
     * Flag indicating whether the task is hidden. This is the case if the task had been marked completed when the task list was last cleared. The default is False. This field is read-only.
     */
    hidden?: boolean | null;
    /**
     * Task identifier.
     */
    id?: string | null;
    /**
     * Type of the resource. This is always "tasks#task".
     */
    kind?: string | null;
    /**
     * Collection of links. This collection is read-only.
     */
    links?: Array<{description?: string; link?: string; type?: string}> | null;
    /**
     * Notes describing the task. Optional.
     */
    notes?: string | null;
    /**
     * Parent task identifier. This field is omitted if it is a top-level task. This field is read-only. Use the "move" method to move the task under a different parent or to the top level.
     */
    parent?: string | null;
    /**
     * String indicating the position of the task among its sibling tasks under the same parent task or at the top level. If this string is greater than another task's corresponding position string according to lexicographical ordering, the task is positioned after the other task under the same parent task (or at the top level). This field is read-only. Use the "move" method to move the task to another position.
     */
    position?: string | null;
    /**
     * URL pointing to this task. Used to retrieve, update, or delete this task.
     */
    selfLink?: string | null;
    /**
     * Status of the task. This is either "needsAction" or "completed".
     */
    status?: string | null;
    /**
     * Title of the task.
     */
    title?: string | null;
    /**
     * Last modification time of the task (as a RFC 3339 timestamp).
     */
    updated?: string | null;
  }
  export interface Schema$TaskList {
    /**
     * ETag of the resource.
     */
    etag?: string | null;
    /**
     * Task list identifier.
     */
    id?: string | null;
    /**
     * Type of the resource. This is always "tasks#taskList".
     */
    kind?: string | null;
    /**
     * URL pointing to this task list. Used to retrieve, update, or delete this task list.
     */
    selfLink?: string | null;
    /**
     * Title of the task list.
     */
    title?: string | null;
    /**
     * Last modification time of the task list (as a RFC 3339 timestamp).
     */
    updated?: string | null;
  }
  export interface Schema$TaskLists {
    /**
     * ETag of the resource.
     */
    etag?: string | null;
    /**
     * Collection of task lists.
     */
    items?: Schema$TaskList[];
    /**
     * Type of the resource. This is always "tasks#taskLists".
     */
    kind?: string | null;
    /**
     * Token that can be used to request the next page of this result.
     */
    nextPageToken?: string | null;
  }
  export interface Schema$Tasks {
    /**
     * ETag of the resource.
     */
    etag?: string | null;
    /**
     * Collection of tasks.
     */
    items?: Schema$Task[];
    /**
     * Type of the resource. This is always "tasks#tasks".
     */
    kind?: string | null;
    /**
     * Token used to access the next page of this result.
     */
    nextPageToken?: string | null;
  }

  export class Resource$Tasklists {
    context: APIRequestContext;
    constructor(context: APIRequestContext) {
      this.context = context;
    }

    /**
     * Deletes the authenticated user's specified task list.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasklists.delete({
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *   });
     *   console.log(res.data);
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    delete(
      params: Params$Resource$Tasklists$Delete,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    delete(
      params?: Params$Resource$Tasklists$Delete,
      options?: MethodOptions
    ): GaxiosPromise<void>;
    delete(
      params: Params$Resource$Tasklists$Delete,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    delete(
      params: Params$Resource$Tasklists$Delete,
      options: MethodOptions | BodyResponseCallback<void>,
      callback: BodyResponseCallback<void>
    ): void;
    delete(
      params: Params$Resource$Tasklists$Delete,
      callback: BodyResponseCallback<void>
    ): void;
    delete(callback: BodyResponseCallback<void>): void;
    delete(
      paramsOrCallback?:
        | Params$Resource$Tasklists$Delete
        | BodyResponseCallback<void>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<void>
        | BodyResponseCallback<Readable>,
      callback?: BodyResponseCallback<void> | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<void> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasklists$Delete;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasklists$Delete;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/users/@me/lists/{tasklist}').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'DELETE',
          },
          options
        ),
        params,
        requiredParams: ['tasklist'],
        pathParams: ['tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<void>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<void>(parameters);
      }
    }

    /**
     * Returns the authenticated user's specified task list.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: [
     *       'https://www.googleapis.com/auth/tasks',
     *       'https://www.googleapis.com/auth/tasks.readonly',
     *     ],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasklists.get({
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "etag": "my_etag",
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "selfLink": "my_selfLink",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    get(
      params: Params$Resource$Tasklists$Get,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    get(
      params?: Params$Resource$Tasklists$Get,
      options?: MethodOptions
    ): GaxiosPromise<Schema$TaskList>;
    get(
      params: Params$Resource$Tasklists$Get,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    get(
      params: Params$Resource$Tasklists$Get,
      options: MethodOptions | BodyResponseCallback<Schema$TaskList>,
      callback: BodyResponseCallback<Schema$TaskList>
    ): void;
    get(
      params: Params$Resource$Tasklists$Get,
      callback: BodyResponseCallback<Schema$TaskList>
    ): void;
    get(callback: BodyResponseCallback<Schema$TaskList>): void;
    get(
      paramsOrCallback?:
        | Params$Resource$Tasklists$Get
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$TaskList> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasklists$Get;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasklists$Get;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/users/@me/lists/{tasklist}').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'GET',
          },
          options
        ),
        params,
        requiredParams: ['tasklist'],
        pathParams: ['tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$TaskList>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$TaskList>(parameters);
      }
    }

    /**
     * Creates a new task list and adds it to the authenticated user's task lists.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasklists.insert({
     *     // Request body metadata
     *     requestBody: {
     *       // request body parameters
     *       // {
     *       //   "etag": "my_etag",
     *       //   "id": "my_id",
     *       //   "kind": "my_kind",
     *       //   "selfLink": "my_selfLink",
     *       //   "title": "my_title",
     *       //   "updated": "my_updated"
     *       // }
     *     },
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "etag": "my_etag",
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "selfLink": "my_selfLink",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    insert(
      params: Params$Resource$Tasklists$Insert,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    insert(
      params?: Params$Resource$Tasklists$Insert,
      options?: MethodOptions
    ): GaxiosPromise<Schema$TaskList>;
    insert(
      params: Params$Resource$Tasklists$Insert,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    insert(
      params: Params$Resource$Tasklists$Insert,
      options: MethodOptions | BodyResponseCallback<Schema$TaskList>,
      callback: BodyResponseCallback<Schema$TaskList>
    ): void;
    insert(
      params: Params$Resource$Tasklists$Insert,
      callback: BodyResponseCallback<Schema$TaskList>
    ): void;
    insert(callback: BodyResponseCallback<Schema$TaskList>): void;
    insert(
      paramsOrCallback?:
        | Params$Resource$Tasklists$Insert
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$TaskList> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasklists$Insert;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasklists$Insert;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/users/@me/lists').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'POST',
          },
          options
        ),
        params,
        requiredParams: [],
        pathParams: [],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$TaskList>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$TaskList>(parameters);
      }
    }

    /**
     * Returns all the authenticated user's task lists.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: [
     *       'https://www.googleapis.com/auth/tasks',
     *       'https://www.googleapis.com/auth/tasks.readonly',
     *     ],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasklists.list({
     *     // Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
     *     maxResults: 'placeholder-value',
     *     // Token specifying the result page to return. Optional.
     *     pageToken: 'placeholder-value',
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "etag": "my_etag",
     *   //   "items": [],
     *   //   "kind": "my_kind",
     *   //   "nextPageToken": "my_nextPageToken"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    list(
      params: Params$Resource$Tasklists$List,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    list(
      params?: Params$Resource$Tasklists$List,
      options?: MethodOptions
    ): GaxiosPromise<Schema$TaskLists>;
    list(
      params: Params$Resource$Tasklists$List,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    list(
      params: Params$Resource$Tasklists$List,
      options: MethodOptions | BodyResponseCallback<Schema$TaskLists>,
      callback: BodyResponseCallback<Schema$TaskLists>
    ): void;
    list(
      params: Params$Resource$Tasklists$List,
      callback: BodyResponseCallback<Schema$TaskLists>
    ): void;
    list(callback: BodyResponseCallback<Schema$TaskLists>): void;
    list(
      paramsOrCallback?:
        | Params$Resource$Tasklists$List
        | BodyResponseCallback<Schema$TaskLists>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$TaskLists>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$TaskLists>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$TaskLists> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasklists$List;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasklists$List;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/users/@me/lists').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'GET',
          },
          options
        ),
        params,
        requiredParams: [],
        pathParams: [],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$TaskLists>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$TaskLists>(parameters);
      }
    }

    /**
     * Updates the authenticated user's specified task list. This method supports patch semantics.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasklists.patch({
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *
     *     // Request body metadata
     *     requestBody: {
     *       // request body parameters
     *       // {
     *       //   "etag": "my_etag",
     *       //   "id": "my_id",
     *       //   "kind": "my_kind",
     *       //   "selfLink": "my_selfLink",
     *       //   "title": "my_title",
     *       //   "updated": "my_updated"
     *       // }
     *     },
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "etag": "my_etag",
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "selfLink": "my_selfLink",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    patch(
      params: Params$Resource$Tasklists$Patch,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    patch(
      params?: Params$Resource$Tasklists$Patch,
      options?: MethodOptions
    ): GaxiosPromise<Schema$TaskList>;
    patch(
      params: Params$Resource$Tasklists$Patch,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    patch(
      params: Params$Resource$Tasklists$Patch,
      options: MethodOptions | BodyResponseCallback<Schema$TaskList>,
      callback: BodyResponseCallback<Schema$TaskList>
    ): void;
    patch(
      params: Params$Resource$Tasklists$Patch,
      callback: BodyResponseCallback<Schema$TaskList>
    ): void;
    patch(callback: BodyResponseCallback<Schema$TaskList>): void;
    patch(
      paramsOrCallback?:
        | Params$Resource$Tasklists$Patch
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$TaskList> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasklists$Patch;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasklists$Patch;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/users/@me/lists/{tasklist}').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'PATCH',
          },
          options
        ),
        params,
        requiredParams: ['tasklist'],
        pathParams: ['tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$TaskList>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$TaskList>(parameters);
      }
    }

    /**
     * Updates the authenticated user's specified task list.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasklists.update({
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *
     *     // Request body metadata
     *     requestBody: {
     *       // request body parameters
     *       // {
     *       //   "etag": "my_etag",
     *       //   "id": "my_id",
     *       //   "kind": "my_kind",
     *       //   "selfLink": "my_selfLink",
     *       //   "title": "my_title",
     *       //   "updated": "my_updated"
     *       // }
     *     },
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "etag": "my_etag",
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "selfLink": "my_selfLink",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    update(
      params: Params$Resource$Tasklists$Update,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    update(
      params?: Params$Resource$Tasklists$Update,
      options?: MethodOptions
    ): GaxiosPromise<Schema$TaskList>;
    update(
      params: Params$Resource$Tasklists$Update,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    update(
      params: Params$Resource$Tasklists$Update,
      options: MethodOptions | BodyResponseCallback<Schema$TaskList>,
      callback: BodyResponseCallback<Schema$TaskList>
    ): void;
    update(
      params: Params$Resource$Tasklists$Update,
      callback: BodyResponseCallback<Schema$TaskList>
    ): void;
    update(callback: BodyResponseCallback<Schema$TaskList>): void;
    update(
      paramsOrCallback?:
        | Params$Resource$Tasklists$Update
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$TaskList>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$TaskList> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasklists$Update;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasklists$Update;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/users/@me/lists/{tasklist}').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'PUT',
          },
          options
        ),
        params,
        requiredParams: ['tasklist'],
        pathParams: ['tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$TaskList>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$TaskList>(parameters);
      }
    }
  }

  export interface Params$Resource$Tasklists$Delete extends StandardParameters {
    /**
     * Task list identifier.
     */
    tasklist?: string;
  }
  export interface Params$Resource$Tasklists$Get extends StandardParameters {
    /**
     * Task list identifier.
     */
    tasklist?: string;
  }
  export interface Params$Resource$Tasklists$Insert extends StandardParameters {
    /**
     * Request body metadata
     */
    requestBody?: Schema$TaskList;
  }
  export interface Params$Resource$Tasklists$List extends StandardParameters {
    /**
     * Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
     */
    maxResults?: number;
    /**
     * Token specifying the result page to return. Optional.
     */
    pageToken?: string;
  }
  export interface Params$Resource$Tasklists$Patch extends StandardParameters {
    /**
     * Task list identifier.
     */
    tasklist?: string;

    /**
     * Request body metadata
     */
    requestBody?: Schema$TaskList;
  }
  export interface Params$Resource$Tasklists$Update extends StandardParameters {
    /**
     * Task list identifier.
     */
    tasklist?: string;

    /**
     * Request body metadata
     */
    requestBody?: Schema$TaskList;
  }

  export class Resource$Tasks {
    context: APIRequestContext;
    constructor(context: APIRequestContext) {
      this.context = context;
    }

    /**
     * Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasks.clear({
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *   });
     *   console.log(res.data);
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    clear(
      params: Params$Resource$Tasks$Clear,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    clear(
      params?: Params$Resource$Tasks$Clear,
      options?: MethodOptions
    ): GaxiosPromise<void>;
    clear(
      params: Params$Resource$Tasks$Clear,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    clear(
      params: Params$Resource$Tasks$Clear,
      options: MethodOptions | BodyResponseCallback<void>,
      callback: BodyResponseCallback<void>
    ): void;
    clear(
      params: Params$Resource$Tasks$Clear,
      callback: BodyResponseCallback<void>
    ): void;
    clear(callback: BodyResponseCallback<void>): void;
    clear(
      paramsOrCallback?:
        | Params$Resource$Tasks$Clear
        | BodyResponseCallback<void>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<void>
        | BodyResponseCallback<Readable>,
      callback?: BodyResponseCallback<void> | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<void> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasks$Clear;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasks$Clear;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/lists/{tasklist}/clear').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'POST',
          },
          options
        ),
        params,
        requiredParams: ['tasklist'],
        pathParams: ['tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<void>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<void>(parameters);
      }
    }

    /**
     * Deletes the specified task from the task list.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasks.delete({
     *     // Task identifier.
     *     task: 'placeholder-value',
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *   });
     *   console.log(res.data);
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    delete(
      params: Params$Resource$Tasks$Delete,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    delete(
      params?: Params$Resource$Tasks$Delete,
      options?: MethodOptions
    ): GaxiosPromise<void>;
    delete(
      params: Params$Resource$Tasks$Delete,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    delete(
      params: Params$Resource$Tasks$Delete,
      options: MethodOptions | BodyResponseCallback<void>,
      callback: BodyResponseCallback<void>
    ): void;
    delete(
      params: Params$Resource$Tasks$Delete,
      callback: BodyResponseCallback<void>
    ): void;
    delete(callback: BodyResponseCallback<void>): void;
    delete(
      paramsOrCallback?:
        | Params$Resource$Tasks$Delete
        | BodyResponseCallback<void>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<void>
        | BodyResponseCallback<Readable>,
      callback?: BodyResponseCallback<void> | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<void> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasks$Delete;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasks$Delete;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/lists/{tasklist}/tasks/{task}').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'DELETE',
          },
          options
        ),
        params,
        requiredParams: ['tasklist', 'task'],
        pathParams: ['task', 'tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<void>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<void>(parameters);
      }
    }

    /**
     * Returns the specified task.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: [
     *       'https://www.googleapis.com/auth/tasks',
     *       'https://www.googleapis.com/auth/tasks.readonly',
     *     ],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasks.get({
     *     // Task identifier.
     *     task: 'placeholder-value',
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "completed": "my_completed",
     *   //   "deleted": false,
     *   //   "due": "my_due",
     *   //   "etag": "my_etag",
     *   //   "hidden": false,
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "links": [],
     *   //   "notes": "my_notes",
     *   //   "parent": "my_parent",
     *   //   "position": "my_position",
     *   //   "selfLink": "my_selfLink",
     *   //   "status": "my_status",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    get(
      params: Params$Resource$Tasks$Get,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    get(
      params?: Params$Resource$Tasks$Get,
      options?: MethodOptions
    ): GaxiosPromise<Schema$Task>;
    get(
      params: Params$Resource$Tasks$Get,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    get(
      params: Params$Resource$Tasks$Get,
      options: MethodOptions | BodyResponseCallback<Schema$Task>,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    get(
      params: Params$Resource$Tasks$Get,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    get(callback: BodyResponseCallback<Schema$Task>): void;
    get(
      paramsOrCallback?:
        | Params$Resource$Tasks$Get
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$Task> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasks$Get;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasks$Get;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/lists/{tasklist}/tasks/{task}').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'GET',
          },
          options
        ),
        params,
        requiredParams: ['tasklist', 'task'],
        pathParams: ['task', 'tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$Task>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$Task>(parameters);
      }
    }

    /**
     * Creates a new task on the specified task list.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasks.insert({
     *     // Parent task identifier. If the task is created at the top level, this parameter is omitted. Optional.
     *     parent: 'placeholder-value',
     *     // Previous sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted. Optional.
     *     previous: 'placeholder-value',
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *
     *     // Request body metadata
     *     requestBody: {
     *       // request body parameters
     *       // {
     *       //   "completed": "my_completed",
     *       //   "deleted": false,
     *       //   "due": "my_due",
     *       //   "etag": "my_etag",
     *       //   "hidden": false,
     *       //   "id": "my_id",
     *       //   "kind": "my_kind",
     *       //   "links": [],
     *       //   "notes": "my_notes",
     *       //   "parent": "my_parent",
     *       //   "position": "my_position",
     *       //   "selfLink": "my_selfLink",
     *       //   "status": "my_status",
     *       //   "title": "my_title",
     *       //   "updated": "my_updated"
     *       // }
     *     },
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "completed": "my_completed",
     *   //   "deleted": false,
     *   //   "due": "my_due",
     *   //   "etag": "my_etag",
     *   //   "hidden": false,
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "links": [],
     *   //   "notes": "my_notes",
     *   //   "parent": "my_parent",
     *   //   "position": "my_position",
     *   //   "selfLink": "my_selfLink",
     *   //   "status": "my_status",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    insert(
      params: Params$Resource$Tasks$Insert,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    insert(
      params?: Params$Resource$Tasks$Insert,
      options?: MethodOptions
    ): GaxiosPromise<Schema$Task>;
    insert(
      params: Params$Resource$Tasks$Insert,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    insert(
      params: Params$Resource$Tasks$Insert,
      options: MethodOptions | BodyResponseCallback<Schema$Task>,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    insert(
      params: Params$Resource$Tasks$Insert,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    insert(callback: BodyResponseCallback<Schema$Task>): void;
    insert(
      paramsOrCallback?:
        | Params$Resource$Tasks$Insert
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$Task> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasks$Insert;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasks$Insert;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/lists/{tasklist}/tasks').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'POST',
          },
          options
        ),
        params,
        requiredParams: ['tasklist'],
        pathParams: ['tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$Task>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$Task>(parameters);
      }
    }

    /**
     * Returns all tasks in the specified task list.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: [
     *       'https://www.googleapis.com/auth/tasks',
     *       'https://www.googleapis.com/auth/tasks.readonly',
     *     ],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasks.list({
     *     // 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.
     *     completedMax: 'placeholder-value',
     *     // 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.
     *     completedMin: 'placeholder-value',
     *     // 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.
     *     dueMax: 'placeholder-value',
     *     // 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.
     *     dueMin: 'placeholder-value',
     *     // Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
     *     maxResults: 'placeholder-value',
     *     // Token specifying the result page to return. Optional.
     *     pageToken: 'placeholder-value',
     *     // 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.
     *     showCompleted: 'placeholder-value',
     *     // Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.
     *     showDeleted: 'placeholder-value',
     *     // Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.
     *     showHidden: 'placeholder-value',
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *     // 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.
     *     updatedMin: 'placeholder-value',
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "etag": "my_etag",
     *   //   "items": [],
     *   //   "kind": "my_kind",
     *   //   "nextPageToken": "my_nextPageToken"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    list(
      params: Params$Resource$Tasks$List,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    list(
      params?: Params$Resource$Tasks$List,
      options?: MethodOptions
    ): GaxiosPromise<Schema$Tasks>;
    list(
      params: Params$Resource$Tasks$List,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    list(
      params: Params$Resource$Tasks$List,
      options: MethodOptions | BodyResponseCallback<Schema$Tasks>,
      callback: BodyResponseCallback<Schema$Tasks>
    ): void;
    list(
      params: Params$Resource$Tasks$List,
      callback: BodyResponseCallback<Schema$Tasks>
    ): void;
    list(callback: BodyResponseCallback<Schema$Tasks>): void;
    list(
      paramsOrCallback?:
        | Params$Resource$Tasks$List
        | BodyResponseCallback<Schema$Tasks>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$Tasks>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$Tasks>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$Tasks> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasks$List;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasks$List;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/lists/{tasklist}/tasks').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'GET',
          },
          options
        ),
        params,
        requiredParams: ['tasklist'],
        pathParams: ['tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$Tasks>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$Tasks>(parameters);
      }
    }

    /**
     * Moves the specified task to another position in the task list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasks.move({
     *     // New parent task identifier. If the task is moved to the top level, this parameter is omitted. Optional.
     *     parent: 'placeholder-value',
     *     // New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.
     *     previous: 'placeholder-value',
     *     // Task identifier.
     *     task: 'placeholder-value',
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "completed": "my_completed",
     *   //   "deleted": false,
     *   //   "due": "my_due",
     *   //   "etag": "my_etag",
     *   //   "hidden": false,
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "links": [],
     *   //   "notes": "my_notes",
     *   //   "parent": "my_parent",
     *   //   "position": "my_position",
     *   //   "selfLink": "my_selfLink",
     *   //   "status": "my_status",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    move(
      params: Params$Resource$Tasks$Move,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    move(
      params?: Params$Resource$Tasks$Move,
      options?: MethodOptions
    ): GaxiosPromise<Schema$Task>;
    move(
      params: Params$Resource$Tasks$Move,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    move(
      params: Params$Resource$Tasks$Move,
      options: MethodOptions | BodyResponseCallback<Schema$Task>,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    move(
      params: Params$Resource$Tasks$Move,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    move(callback: BodyResponseCallback<Schema$Task>): void;
    move(
      paramsOrCallback?:
        | Params$Resource$Tasks$Move
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$Task> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasks$Move;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasks$Move;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (
              rootUrl + '/tasks/v1/lists/{tasklist}/tasks/{task}/move'
            ).replace(/([^:]\/)\/+/g, '$1'),
            method: 'POST',
          },
          options
        ),
        params,
        requiredParams: ['tasklist', 'task'],
        pathParams: ['task', 'tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$Task>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$Task>(parameters);
      }
    }

    /**
     * Updates the specified task. This method supports patch semantics.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasks.patch({
     *     // Task identifier.
     *     task: 'placeholder-value',
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *
     *     // Request body metadata
     *     requestBody: {
     *       // request body parameters
     *       // {
     *       //   "completed": "my_completed",
     *       //   "deleted": false,
     *       //   "due": "my_due",
     *       //   "etag": "my_etag",
     *       //   "hidden": false,
     *       //   "id": "my_id",
     *       //   "kind": "my_kind",
     *       //   "links": [],
     *       //   "notes": "my_notes",
     *       //   "parent": "my_parent",
     *       //   "position": "my_position",
     *       //   "selfLink": "my_selfLink",
     *       //   "status": "my_status",
     *       //   "title": "my_title",
     *       //   "updated": "my_updated"
     *       // }
     *     },
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "completed": "my_completed",
     *   //   "deleted": false,
     *   //   "due": "my_due",
     *   //   "etag": "my_etag",
     *   //   "hidden": false,
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "links": [],
     *   //   "notes": "my_notes",
     *   //   "parent": "my_parent",
     *   //   "position": "my_position",
     *   //   "selfLink": "my_selfLink",
     *   //   "status": "my_status",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    patch(
      params: Params$Resource$Tasks$Patch,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    patch(
      params?: Params$Resource$Tasks$Patch,
      options?: MethodOptions
    ): GaxiosPromise<Schema$Task>;
    patch(
      params: Params$Resource$Tasks$Patch,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    patch(
      params: Params$Resource$Tasks$Patch,
      options: MethodOptions | BodyResponseCallback<Schema$Task>,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    patch(
      params: Params$Resource$Tasks$Patch,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    patch(callback: BodyResponseCallback<Schema$Task>): void;
    patch(
      paramsOrCallback?:
        | Params$Resource$Tasks$Patch
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$Task> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasks$Patch;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasks$Patch;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/lists/{tasklist}/tasks/{task}').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'PATCH',
          },
          options
        ),
        params,
        requiredParams: ['tasklist', 'task'],
        pathParams: ['task', 'tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$Task>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$Task>(parameters);
      }
    }

    /**
     * Updates the specified task.
     * @example
     * ```js
     * // Before running the sample:
     * // - Enable the API at:
     * //   https://console.developers.google.com/apis/api/tasks.googleapis.com
     * // - Login into gcloud by running:
     * //   `$ gcloud auth application-default login`
     * // - Install the npm module by running:
     * //   `$ npm install googleapis`
     *
     * const {google} = require('googleapis');
     * const tasks = google.tasks('v1');
     *
     * async function main() {
     *   const auth = new google.auth.GoogleAuth({
     *     // Scopes can be specified either as an array or as a single, space-delimited string.
     *     scopes: ['https://www.googleapis.com/auth/tasks'],
     *   });
     *
     *   // Acquire an auth client, and bind it to all future calls
     *   const authClient = await auth.getClient();
     *   google.options({auth: authClient});
     *
     *   // Do the magic
     *   const res = await tasks.tasks.update({
     *     // Task identifier.
     *     task: 'placeholder-value',
     *     // Task list identifier.
     *     tasklist: 'placeholder-value',
     *
     *     // Request body metadata
     *     requestBody: {
     *       // request body parameters
     *       // {
     *       //   "completed": "my_completed",
     *       //   "deleted": false,
     *       //   "due": "my_due",
     *       //   "etag": "my_etag",
     *       //   "hidden": false,
     *       //   "id": "my_id",
     *       //   "kind": "my_kind",
     *       //   "links": [],
     *       //   "notes": "my_notes",
     *       //   "parent": "my_parent",
     *       //   "position": "my_position",
     *       //   "selfLink": "my_selfLink",
     *       //   "status": "my_status",
     *       //   "title": "my_title",
     *       //   "updated": "my_updated"
     *       // }
     *     },
     *   });
     *   console.log(res.data);
     *
     *   // Example response
     *   // {
     *   //   "completed": "my_completed",
     *   //   "deleted": false,
     *   //   "due": "my_due",
     *   //   "etag": "my_etag",
     *   //   "hidden": false,
     *   //   "id": "my_id",
     *   //   "kind": "my_kind",
     *   //   "links": [],
     *   //   "notes": "my_notes",
     *   //   "parent": "my_parent",
     *   //   "position": "my_position",
     *   //   "selfLink": "my_selfLink",
     *   //   "status": "my_status",
     *   //   "title": "my_title",
     *   //   "updated": "my_updated"
     *   // }
     * }
     *
     * main().catch(e => {
     *   console.error(e);
     *   throw e;
     * });
     *
     * ```
     *
     * @param params - Parameters for request
     * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
     * @param callback - Optional callback that handles the response.
     * @returns A promise if used with async/await, or void if used with a callback.
     */
    update(
      params: Params$Resource$Tasks$Update,
      options: StreamMethodOptions
    ): GaxiosPromise<Readable>;
    update(
      params?: Params$Resource$Tasks$Update,
      options?: MethodOptions
    ): GaxiosPromise<Schema$Task>;
    update(
      params: Params$Resource$Tasks$Update,
      options: StreamMethodOptions | BodyResponseCallback<Readable>,
      callback: BodyResponseCallback<Readable>
    ): void;
    update(
      params: Params$Resource$Tasks$Update,
      options: MethodOptions | BodyResponseCallback<Schema$Task>,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    update(
      params: Params$Resource$Tasks$Update,
      callback: BodyResponseCallback<Schema$Task>
    ): void;
    update(callback: BodyResponseCallback<Schema$Task>): void;
    update(
      paramsOrCallback?:
        | Params$Resource$Tasks$Update
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      optionsOrCallback?:
        | MethodOptions
        | StreamMethodOptions
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>,
      callback?:
        | BodyResponseCallback<Schema$Task>
        | BodyResponseCallback<Readable>
    ): void | GaxiosPromise<Schema$Task> | GaxiosPromise<Readable> {
      let params = (paramsOrCallback || {}) as Params$Resource$Tasks$Update;
      let options = (optionsOrCallback || {}) as MethodOptions;

      if (typeof paramsOrCallback === 'function') {
        callback = paramsOrCallback;
        params = {} as Params$Resource$Tasks$Update;
        options = {};
      }

      if (typeof optionsOrCallback === 'function') {
        callback = optionsOrCallback;
        options = {};
      }

      const rootUrl = options.rootUrl || 'https://tasks.googleapis.com/';
      const parameters = {
        options: Object.assign(
          {
            url: (rootUrl + '/tasks/v1/lists/{tasklist}/tasks/{task}').replace(
              /([^:]\/)\/+/g,
              '$1'
            ),
            method: 'PUT',
          },
          options
        ),
        params,
        requiredParams: ['tasklist', 'task'],
        pathParams: ['task', 'tasklist'],
        context: this.context,
      };
      if (callback) {
        createAPIRequest<Schema$Task>(
          parameters,
          callback as BodyResponseCallback<unknown>
        );
      } else {
        return createAPIRequest<Schema$Task>(parameters);
      }
    }
  }

  export interface Params$Resource$Tasks$Clear extends StandardParameters {
    /**
     * Task list identifier.
     */
    tasklist?: string;
  }
  export interface Params$Resource$Tasks$Delete extends StandardParameters {
    /**
     * Task identifier.
     */
    task?: string;
    /**
     * Task list identifier.
     */
    tasklist?: string;
  }
  export interface Params$Resource$Tasks$Get extends StandardParameters {
    /**
     * Task identifier.
     */
    task?: string;
    /**
     * Task list identifier.
     */
    tasklist?: string;
  }
  export interface Params$Resource$Tasks$Insert extends StandardParameters {
    /**
     * Parent task identifier. If the task is created at the top level, this parameter is omitted. Optional.
     */
    parent?: string;
    /**
     * Previous sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted. Optional.
     */
    previous?: string;
    /**
     * Task list identifier.
     */
    tasklist?: string;

    /**
     * Request body metadata
     */
    requestBody?: Schema$Task;
  }
  export interface Params$Resource$Tasks$List extends StandardParameters {
    /**
     * 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.
     */
    completedMax?: string;
    /**
     * 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.
     */
    completedMin?: string;
    /**
     * 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.
     */
    dueMax?: string;
    /**
     * 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.
     */
    dueMin?: string;
    /**
     * Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
     */
    maxResults?: number;
    /**
     * Token specifying the result page to return. Optional.
     */
    pageToken?: string;
    /**
     * 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.
     */
    showCompleted?: boolean;
    /**
     * Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.
     */
    showDeleted?: boolean;
    /**
     * Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.
     */
    showHidden?: boolean;
    /**
     * Task list identifier.
     */
    tasklist?: string;
    /**
     * 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.
     */
    updatedMin?: string;
  }
  export interface Params$Resource$Tasks$Move extends StandardParameters {
    /**
     * New parent task identifier. If the task is moved to the top level, this parameter is omitted. Optional.
     */
    parent?: string;
    /**
     * New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.
     */
    previous?: string;
    /**
     * Task identifier.
     */
    task?: string;
    /**
     * Task list identifier.
     */
    tasklist?: string;
  }
  export interface Params$Resource$Tasks$Patch extends StandardParameters {
    /**
     * Task identifier.
     */
    task?: string;
    /**
     * Task list identifier.
     */
    tasklist?: string;

    /**
     * Request body metadata
     */
    requestBody?: Schema$Task;
  }
  export interface Params$Resource$Tasks$Update extends StandardParameters {
    /**
     * Task identifier.
     */
    task?: string;
    /**
     * Task list identifier.
     */
    tasklist?: string;

    /**
     * Request body metadata
     */
    requestBody?: Schema$Task;
  }
}

result-matching ""

    No results matching ""