class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
get = method(self, **kwargs)
Returns a single user setting.
 
Args:
  setting: string, Name of the user setting. (required)
 
Returns:
  An object of the form
 
    {
    "kind": "calendar#setting", # Type of the resource ("calendar#setting").
    "etag": "A String", # ETag of the resource.
    "id": "A String", # Name of the user setting.
    "value": "A String", # Value of the user setting. The format of the value depends on the ID of the setting.
  }
list = method(self, **kwargs)
Returns all user settings for the authenticated user.
 
Args:
 
Returns:
  An object of the form
 
    {
    "items": [ # List of user settings.
      {
        "kind": "calendar#setting", # Type of the resource ("calendar#setting").
        "etag": "A String", # ETag of the resource.
        "id": "A String", # Name of the user setting.
        "value": "A String", # Value of the user setting. The format of the value depends on the ID of the setting.
      },
    ],
    "kind": "calendar#settings", # Type of the collection ("calendar#settings").
    "etag": "A String", # Etag of the collection.
  }

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