docs: docs update (#911)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
Fixes #<issue_number_goes_here> 🦕
diff --git a/docs/dyn/tasks_v1.tasks.html b/docs/dyn/tasks_v1.tasks.html
index 6c5fc4d..a72ecbd 100644
--- a/docs/dyn/tasks_v1.tasks.html
+++ b/docs/dyn/tasks_v1.tasks.html
@@ -87,7 +87,7 @@
<code><a href="#insert">insert(tasklist, body=None, parent=None, previous=None)</a></code></p>
<p class="firstline">Creates a new task on the specified task list. Fails with HTTP code 403 or 429 after reaching the storage limit of 100,000 tasks per account.</p>
<p class="toc_element">
- <code><a href="#list">list(tasklist, showCompleted=None, dueMin=None, dueMax=None, pageToken=None, updatedMin=None, showDeleted=None, completedMax=None, maxResults=None, completedMin=None, showHidden=None)</a></code></p>
+ <code><a href="#list">list(tasklist, completedMax=None, completedMin=None, dueMax=None, dueMin=None, maxResults=None, pageToken=None, showCompleted=None, showDeleted=None, showHidden=None, updatedMin=None)</a></code></p>
<p class="firstline">Returns all tasks in the specified task list.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -104,7 +104,7 @@
<h3>Method Details</h3>
<div class="method">
<code class="details" id="clear">clear(tasklist)</code>
- <pre>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.
+ <pre>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.
Args:
tasklist: string, Task list identifier. (required)
@@ -133,28 +133,28 @@
An object of the form:
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- }</pre>
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+ }</pre>
</div>
<div class="method">
@@ -167,28 +167,28 @@
The object takes the form of:
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- }
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+}
parent: string, Parent task identifier. If the task is created at the top level, this parameter is omitted. Optional.
previous: string, Previous sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted. Optional.
@@ -197,79 +197,79 @@
An object of the form:
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- }</pre>
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+ }</pre>
</div>
<div class="method">
- <code class="details" id="list">list(tasklist, showCompleted=None, dueMin=None, dueMax=None, pageToken=None, updatedMin=None, showDeleted=None, completedMax=None, maxResults=None, completedMin=None, showHidden=None)</code>
+ <code class="details" id="list">list(tasklist, completedMax=None, completedMin=None, dueMax=None, dueMin=None, maxResults=None, pageToken=None, showCompleted=None, showDeleted=None, showHidden=None, updatedMin=None)</code>
<pre>Returns all tasks in the specified task list.
Args:
tasklist: string, Task list identifier. (required)
- showCompleted: boolean, Flag indicating whether completed tasks are returned in the result. Optional. The default is True.
- dueMin: 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.
- dueMax: 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.
- pageToken: string, Token specifying the result page to return. Optional.
- updatedMin: 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.
- showDeleted: boolean, Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.
- completedMax: string, 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, Upper bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
+ completedMin: string, Lower bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
+ dueMax: string, Upper bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
+ dueMin: string, Lower bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
maxResults: string, Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
- completedMin: 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.
+ pageToken: string, Token specifying the result page to return. Optional.
+ showCompleted: boolean, Flag indicating whether completed tasks are returned in the result. Optional. The default is True.
+ showDeleted: boolean, Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.
showHidden: boolean, Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.
+ updatedMin: 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.
Returns:
An object of the form:
{
- "nextPageToken": "A String", # Token used to access the next page of this result.
- "items": [ # Collection of tasks.
+ "etag": "A String", # ETag of the resource.
+ "items": [ # Collection of tasks.
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- },
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+ },
],
- "kind": "tasks#tasks", # Type of the resource. This is always "tasks#tasks".
- "etag": "A String", # ETag of the resource.
+ "kind": "tasks#tasks", # Type of the resource. This is always "tasks#tasks".
+ "nextPageToken": "A String", # Token used to access the next page of this result.
}</pre>
</div>
@@ -282,7 +282,7 @@
previous_response: The response from the request for the previous page. (required)
Returns:
- A request object that you can call 'execute()' on to request the next
+ A request object that you can call 'execute()' on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
@@ -301,28 +301,28 @@
An object of the form:
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- }</pre>
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+ }</pre>
</div>
<div class="method">
@@ -336,56 +336,56 @@
The object takes the form of:
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- }
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+}
Returns:
An object of the form:
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- }</pre>
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+ }</pre>
</div>
<div class="method">
@@ -399,56 +399,56 @@
The object takes the form of:
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- }
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+}
Returns:
An object of the form:
{
- "status": "A String", # Status of the task. This is either "needsAction" or "completed".
- "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
- "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
- "parent": "A String", # 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.
- "links": [ # Collection of links. This collection is read-only.
- {
- "type": "A String", # Type of the link, e.g. "email".
- "link": "A String", # The URL.
- "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
- },
- ],
- "title": "A String", # Title of the task.
- "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
- "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
- "due": "A String", # 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.
- "etag": "A String", # ETag of the resource.
- "notes": "A String", # Notes describing the task. Optional.
- "position": "A String", # 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.
- "hidden": True or False, # 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.
- "id": "A String", # Task identifier.
- "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
- }</pre>
+ "completed": "A String", # Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
+ "deleted": True or False, # Flag indicating whether the task has been deleted. The default if False.
+ "due": "A String", # 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.
+ "etag": "A String", # ETag of the resource.
+ "hidden": True or False, # 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.
+ "id": "A String", # Task identifier.
+ "kind": "tasks#task", # Type of the resource. This is always "tasks#task".
+ "links": [ # Collection of links. This collection is read-only.
+ {
+ "description": "A String", # The description. In HTML speak: Everything between <a> and </a>.
+ "link": "A String", # The URL.
+ "type": "A String", # Type of the link, e.g. "email".
+ },
+ ],
+ "notes": "A String", # Notes describing the task. Optional.
+ "parent": "A String", # 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.
+ "position": "A String", # 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.
+ "selfLink": "A String", # URL pointing to this task. Used to retrieve, update, or delete this task.
+ "status": "A String", # Status of the task. This is either "needsAction" or "completed".
+ "title": "A String", # Title of the task.
+ "updated": "A String", # Last modification time of the task (as a RFC 3339 timestamp).
+ }</pre>
</div>
</body></html>
\ No newline at end of file