class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
get = method(self, **kwargs)
Get a post by id.
 
Args:
  postId: string, The ID of the post (required)
  blogId: string, ID of the blog to fetch the post from. (required)
list = method(self, **kwargs)
Retrieves a list of posts, possibly filtered.
 
Args:
  startDate: string, Earliest post date to fetch.
  pageToken: string, Continuation token if the request is paged.
  maxResults: integer, Maximum number of posts to fetch.
  fetchBodies: boolean, Whether the body content of posts is included.
  blogId: string, ID of the blog to fetch posts from. (required)
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)