class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Deletes a location from the user's location history.
 
Args:
  locationId: string, Timestamp of the location to delete (ms since epoch). (required)
get = method(self, **kwargs)
Reads a location from the user's location history.
 
Args:
  locationId: string, Timestamp of the location to read (ms since epoch). (required)
  granularity: string, Granularity of the location to return.
insert = method(self, **kwargs)
Inserts or updates a location in the user's location history.
 
Args:
  body: object, The request body. (required)
list = method(self, **kwargs)
Lists the user's location history.
 
Args:
  min_time: string, Minimum timestamp of locations to return (ms since epoch).
  max_results: string, Maximum number of locations to return.
  max_time: string, Maximum timestamp of locations to return (ms since epoch).
  granularity: string, Granularity of the requested locations.

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