class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
clear = method(self, **kwargs)
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:
  body: object, The request body. (required)
  tasklist: string, Task list identifier. (required)
delete = method(self, **kwargs)
Deletes the specified task from the task list.
 
Args:
  tasklist: string, Task list identifier. (required)
  task: string, Task identifier. (required)
get = method(self, **kwargs)
Returns the specified task.
 
Args:
  tasklist: string, Task list identifier. (required)
  task: string, Task identifier. (required)
insert = method(self, **kwargs)
Creates a new task on the specified task list.
 
Args:
  body: object, The request body. (required)
  tasklist: string, Task list identifier. (required)
  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.
list = method(self, **kwargs)
Returns all tasks in the specified task list.
 
Args:
  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.
  tasklist: string, Task list identifier. (required)
  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.
  maxResults: string, Maximum number of task lists returned on one page. Optional. The default is 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.
  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.
  showHidden: boolean, Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.
  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.
list_next = methodNext(self, previous_request, previous_response)
Retrieves the next page of results.
 
Args:
  previous_request: The request for the previous page.
  previous_response: The response from the request for the previous page.
 
Returns:
  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.
move = method(self, **kwargs)
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.
 
Args:
  body: object, The request body. (required)
  tasklist: string, Task list identifier. (required)
  parent: string, New parent task identifier. If the task is moved to the top level, this parameter is omitted. Optional.
  task: string, Task identifier. (required)
  previous: string, New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.
patch = method(self, **kwargs)
Updates the specified task. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
  tasklist: string, Task list identifier. (required)
  task: string, Task identifier. (required)
update = method(self, **kwargs)
Updates the specified task.
 
Args:
  body: object, The request body. (required)
  tasklist: string, Task list identifier. (required)
  task: string, Task identifier. (required)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)