class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
get = method(self, **kwargs)
Gets one account by id.
 
Args:
  id: string, The account id (required)
list = method(self, **kwargs)
Retrieves a list of accounts.
 
Args:
patch = method(self, **kwargs)
Updates an existing account. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
  id: string, The account id (required)
update = method(self, **kwargs)
Updates an existing account.
 
Args:
  body: object, The request body. (required)
  id: string, The account id (required)

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