Returns all the details of the watch corresponding to the reseller.
  register(serviceAccountEmailAddress=None)
Registers a Reseller for receiving notifications.
  unregister(serviceAccountEmailAddress=None)
Unregisters a Reseller for receiving notifications.
getwatchdetails()
  Returns all the details of the watch corresponding to the reseller.
Args:
Returns:
  An object of the form:
    { # JSON template for resellernotify getwatchdetails response.
    "serviceAccountEmailAddresses": [ # List of registered service accounts.
      "A String",
    ],
    "topicName": "A String", # Topic name of the PubSub
  }
register(serviceAccountEmailAddress=None)
  Registers a Reseller for receiving notifications.
Args:
  serviceAccountEmailAddress: string, The service account which will own the created Cloud-PubSub topic.
Returns:
  An object of the form:
    { # JSON template for resellernotify response.
    "topicName": "A String", # Topic name of the PubSub
  }
unregister(serviceAccountEmailAddress=None)
  Unregisters a Reseller for receiving notifications.
Args:
  serviceAccountEmailAddress: string, The service account which owns the Cloud-PubSub topic.
Returns:
  An object of the form:
    { # JSON template for resellernotify response.
    "topicName": "A String", # Topic name of the PubSub
  }