class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
get = method(self, **kwargs)
Returns the profile information for the authenticated user.
 
Args:
 
Returns:
  An object of the form
 
    {
      "kind": "moderator#profile",
      "attribution": {
        "geo": {
          "latitude": 3.14,
          "location": "A String",
          "longitude": 3.14,
        },
        "displayName": "A String",
        "location": "A String",
        "avatarUrl": "A String",
      },
      "id": {
        "user": "A String",
      },
    }
patch = method(self, **kwargs)
Updates the profile information for the authenticated user. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
    The object takes the form of:
 
{
    "kind": "moderator#profile",
    "attribution": {
      "geo": {
        "latitude": 3.14,
        "location": "A String",
        "longitude": 3.14,
      },
      "displayName": "A String",
      "location": "A String",
      "avatarUrl": "A String",
    },
    "id": {
      "user": "A String",
    },
  }
 
 
Returns:
  An object of the form
 
    {
      "kind": "moderator#profile",
      "attribution": {
        "geo": {
          "latitude": 3.14,
          "location": "A String",
          "longitude": 3.14,
        },
        "displayName": "A String",
        "location": "A String",
        "avatarUrl": "A String",
      },
      "id": {
        "user": "A String",
      },
    }
update = method(self, **kwargs)
Updates the profile information for the authenticated user.
 
Args:
  body: object, The request body. (required)
    The object takes the form of:
 
{
    "kind": "moderator#profile",
    "attribution": {
      "geo": {
        "latitude": 3.14,
        "location": "A String",
        "longitude": 3.14,
      },
      "displayName": "A String",
      "location": "A String",
      "avatarUrl": "A String",
    },
    "id": {
      "user": "A String",
    },
  }
 
 
Returns:
  An object of the form
 
    {
      "kind": "moderator#profile",
      "attribution": {
        "geo": {
          "latitude": 3.14,
          "location": "A String",
          "longitude": 3.14,
        },
        "displayName": "A String",
        "location": "A String",
        "avatarUrl": "A String",
      },
      "id": {
        "user": "A String",
      },
    }

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