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: 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: Timestamp of the location to read (ms since epoch). (required)
  granularity: Granularity of the location to return.
insert = method(self, **kwargs)
Inserts or updates a location in the user's location history.
 
Args:
  body: The request body.
list = method(self, **kwargs)
Lists the user's location history.
 
Args:
  min_time: Minimum timestamp of locations to return (ms since epoch).
  max_results: Maximum number of locations to return.
  max_time: Maximum timestamp of locations to return (ms since epoch).
  granularity: 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)