class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Relinquish ownership of a website or domain.
 
Args:
  id: string, The id of a verified site or domain. (required)
get = method(self, **kwargs)
Get the most current data for a website or domain.
 
Args:
  id: string, The id of a verified site or domain. (required)
getToken = method(self, **kwargs)
Get a verification token for placing on a website or domain.
 
Args:
  verificationMethod: string, The method to use for verifying a site or domain.
  identifier: string, The URL or domain to verify.
  type: string, Type of resource to verify. Can be 'site' (URL) or 'inet_domain' (domain name).
insert = method(self, **kwargs)
Attempt verification of a website or domain.
 
Args:
  body: object, The request body. (required)
  verificationMethod: string, The method to use for verifying a site or domain. (required)
list = method(self, **kwargs)
Get the list of your verified websites and domains.
 
Args:
patch = method(self, **kwargs)
Modify the list of owners for your website or domain. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
  id: string, The id of a verified site or domain. (required)
update = method(self, **kwargs)
Modify the list of owners for your website or domain.
 
Args:
  body: object, The request body. (required)
  id: string, The id of a verified site or domain. (required)

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