/var/www/flurhymez/vendor/google/apiclient-services/src/Reseller/Resource
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/Reseller/Resource/Resellernotify.php (2674B)
* $resellerService = new Google\Service\Reseller(...);
* $resellernotify = $resellerService->resellernotify;
*
*/
class Resellernotify extends \Google\Service\Resource
{
/**
* Returns all the details of the watch corresponding to the reseller.
* (resellernotify.getwatchdetails)
*
* @param array $optParams Optional parameters.
* @return ResellernotifyGetwatchdetailsResponse
*/
public function getwatchdetails($optParams = [])
{
$params = [];
$params = array_merge($params, $optParams);
return $this->call('getwatchdetails', [$params], ResellernotifyGetwatchdetailsResponse::class);
}
/**
* Registers a Reseller for receiving notifications. (resellernotify.register)
*
* @param array $optParams Optional parameters.
*
* @opt_param string serviceAccountEmailAddress The service account which will
* own the created Cloud-PubSub topic.
* @return ResellernotifyResource
*/
public function register($optParams = [])
{
$params = [];
$params = array_merge($params, $optParams);
return $this->call('register', [$params], ResellernotifyResource::class);
}
/**
* Unregisters a Reseller for receiving notifications.
* (resellernotify.unregister)
*
* @param array $optParams Optional parameters.
*
* @opt_param string serviceAccountEmailAddress The service account which owns
* the Cloud-PubSub topic.
* @return ResellernotifyResource
*/
public function unregister($optParams = [])
{
$params = [];
$params = array_merge($params, $optParams);
return $this->call('unregister', [$params], ResellernotifyResource::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Resellernotify::class, 'Google_Service_Reseller_Resource_Resellernotify');