class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Remove a person from a group
 
Args:
  personId: string, ID of the person to remove from the group. (required)
  userId: string, ID of the owner of the group. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  groupId: string, ID of the group from which to remove the person. (required)
get = method(self, **kwargs)
Get a user profile
 
Args:
  userId: string, ID of the user being referenced. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
liked = method(self, **kwargs)
Get people who liked an activity
 
Args:
  c: string, A continuation token that allows pagination.
  userId: string, ID of the user being referenced. (required)
  max_results: integer, Maximum number of results to include.
  hl: string, Language code to limit language results.
  scope: string, A parameter (required)
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  postId: string, ID of the activity that was liked. (required)
  groupId: string, A parameter (required)
    Allowed values
      @liked - People who liked this activity.
liked_next = methodNext(self, previous)
Retrieve the next page of results.
 
Takes a single argument, 'body', which is the results
from the last call, and returns the next set of items
in the collection.
 
Returns:
  None if there are no more items in the collection.
list = method(self, **kwargs)
Get people in a group
 
Args:
  c: string, A continuation token that allows pagination.
  userId: string, ID of the user being referenced. (required)
  max_results: integer, Maximum number of results to include.
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  groupId: string, ID of the group for which to list users. (required)
patch = method(self, **kwargs)
Add a person to a group. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
  personId: string, ID of the person to add to the group. (required)
  userId: string, ID of the owner of the group. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  groupId: string, ID of the group to which to add the person. (required)
reshared = method(self, **kwargs)
Get people who reshared an activity
 
Args:
  c: string, A continuation token that allows pagination.
  userId: string, ID of the user being referenced. (required)
  max_results: integer, Maximum number of results to include.
  hl: string, Language code to limit language results.
  scope: string, A parameter (required)
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  postId: string, ID of the activity that was reshared. (required)
  groupId: string, A parameter (required)
    Allowed values
      @reshared - People who reshared this activity.
search = method(self, **kwargs)
Search for people
 
Args:
  c: string, A continuation token that allows pagination.
  q: string, Full-text search query string.
  max_results: integer, Maximum number of results to include.
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
update = method(self, **kwargs)
Add a person to a group
 
Args:
  body: object, The request body. (required)
  personId: string, ID of the person to add to the group. (required)
  userId: string, ID of the owner of the group. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  groupId: string, ID of the group to which to add the person. (required)

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