class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Deletes the authenticated user's specified task list.
 
Args:
  tasklist: string, Task list identifier. (required)
get = method(self, **kwargs)
Returns the authenticated user's specified task list.
 
Args:
  tasklist: string, Task list identifier. (required)
insert = method(self, **kwargs)
Creates a new task list and adds it to the authenticated user's task lists.
 
Args:
  body: object, The request body. (required)
list = method(self, **kwargs)
Returns all the authenticated user's task lists.
 
Args:
  pageToken: string, Token specifying the result page to return. Optional.
  maxResults: integer, Maximum number of task lists returned on one page. Optional. The default is 100.
patch = method(self, **kwargs)
Updates the authenticated user's specified task list. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
  tasklist: string, Task list identifier. (required)
update = method(self, **kwargs)
Updates the authenticated user's specified task list.
 
Args:
  body: object, The request body. (required)
  tasklist: string, Task list identifier. (required)

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