class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Delete a comment
 
Args:
  commentId: ID of the comment being referenced. (required)
  alt: Specifies an alternative representation type.
  postId: ID of the activity for which to delete the comment. (required)
  userId: ID of the user being referenced. (required)
  hl: Language code to limit language results.
get = method(self, **kwargs)
Get a comment
 
Args:
  commentId: ID of the comment being referenced. (required)
  alt: Specifies an alternative representation type.
  postId: ID of the activity for which to get comments. (required)
  userId: ID of the user being referenced. (required)
  hl: Language code to limit language results.
insert = method(self, **kwargs)
Create a comment
 
Args:
  body: The request body.
  alt: Specifies an alternative representation type.
  postId: ID of the activity on which to comment. (required)
  userId: ID of the user on whose behalf to comment. (required)
  hl: Language code to limit language results.
list = method(self, **kwargs)
List comments
 
Args:
  c: A continuation token that allows pagination.
  userId: ID of the user for whose post to get comments. (required)
  max_results: Maximum number of results to include.
  hl: Language code to limit language results.
  scope: The collection to which the activity belongs. (required)
  alt: Specifies an alternative representation type.
  postId: ID of the activity for which to get comments. (required)
update = method(self, **kwargs)
Update a comment
 
Args:
  body: The request body.
  userId: ID of the user being referenced. (required)
  abuseType: A parameter
  hl: Language code to limit language results.
  commentId: ID of the comment being referenced. (required)
  scope: The collection to which the activity belongs. (required)
  alt: Specifies an alternative representation type.
  postId: ID of the activity for which to update the comment. (required)

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