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. (required)
  identifier: string, The URL or domain to verify. (required)
  type: string, Type of resource to verify. Can be 'site' (URL) or 'inet_domain' (domain name). (required)
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:
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)