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: ID of the person to remove from the group. (required)
  alt: Specifies an alternative representation type.
  userId: ID of the owner of the group. (required)
  groupId: ID of the group from which to remove the person. (required)
  hl: Language code to limit language results.
get = method(self, **kwargs)
Get a user profile
 
Args:
  alt: Specifies an alternative representation type.
  userId: ID of the user being referenced. (required)
  hl: Language code to limit language results.
liked = method(self, **kwargs)
Get people who liked an activity
 
Args:
  c: A continuation token that allows pagination.
  userId: ID of the user being referenced. (required)
  max_results: Maximum number of results to include.
  hl: Language code to limit language results.
  scope: A parameter (required)
  alt: Specifies an alternative representation type.
  postId: ID of the activity that was liked. (required)
  groupId: A parameter (required)
liked_next = methodNext(self, previous)
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: A continuation token that allows pagination.
  userId: ID of the user being referenced. (required)
  max_results: Maximum number of results to include.
  hl: Language code to limit language results.
  alt: Specifies an alternative representation type.
  groupId: ID of the group for which to list users. (required)
reshared = method(self, **kwargs)
Get people who reshared an activity
 
Args:
  c: A continuation token that allows pagination.
  userId: ID of the user being referenced. (required)
  max_results: Maximum number of results to include.
  hl: Language code to limit language results.
  scope: A parameter (required)
  alt: Specifies an alternative representation type.
  postId: ID of the activity that was reshared. (required)
  groupId: A parameter (required)
search = method(self, **kwargs)
Search for people
 
Args:
  q: Full-text search query string.
  c: A continuation token that allows pagination.
  max_results: Maximum number of results to include.
  alt: Specifies an alternative representation type.
  hl: Language code to limit language results.
update = method(self, **kwargs)
Add a person to a group
 
Args:
  body: The request body.
  personId: ID of the person to add to the group. (required)
  userId: ID of the owner of the group. (required)
  hl: Language code to limit language results.
  alt: Specifies an alternative representation type.
  groupId: 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)