class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Deletes an existing activity, if the access controls allow it.
 
Args:
  activityId: string, ID of the activity to remove. (required)
list = method(self, **kwargs)
Retrieves a list of activities.
 
Args:
  pageToken: string, A continuation token that allows pagination.
  userId: string, The ID of the user whose activities will be listed. Can be me to refer to the viewer (i.e. the authenticated user). (required)
  maxResults: integer, The maximum number of activities to include in the response.
  collection: string, The collection of activities to list. (required)
    Allowed values
      all - All activities created by the specified user that the authenticated user is authorized to view.
      scraps - The specified user's scrapbook.
      stream - The specified user's stream feed, intended for consumption. This includes activities posted by people that the user is following, and activities in which the user has been mentioned.
  hl: string, Specifies the interface language (host language) of your user interface.
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.

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