class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
get = method(self, **kwargs)
Returns Analytics report data for a profile.
 
Args:
  sort: string, A comma-separated list of dimensions or metrics that determine the sort order for the report data.
  end_date: string, End date for fetching report data. All requests should specify an end date formatted as YYYY-MM-DD. (required)
  dimensions: string, A comma-separated list of Analytics dimensions. E.g., 'ga:browser,ga:city'.
  ids: string, Unique table ID for retrieving report data. Table ID is of the form ga:XXXX, where XXXX is the Analytics profile ID. (required)
  metrics: string, A comma-separated list of Analytics metrics. E.g., 'ga:visits,ga:pageviews'. At least one metric must be specified to retrieve a valid Analytics report. (required)
  max_results: integer, The maximum number of entries to include in this feed.
  filters: string, A comma-separated list of dimension or metric filters to be applied to the report data.
  segment: string, An Analytics advanced segment to be applied to the report data.
  start_date: string, Start date for fetching report data. All requests should specify a start date formatted as YYYY-MM-DD. (required)
  start_index: integer, An index of the first entity to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.

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