authentication = $authentication; } /** * @return AuthenticationInfo */ public function getAuthentication() { return $this->authentication; } /** * A unique identifier (e.g. UUID) for this push notification. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Token unique for this task/session * * @param string $token */ public function setToken($token) { $this->token = $token; } /** * @return string */ public function getToken() { return $this->token; } /** * Url to send the notification too * * @param string $url */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getUrl() { return $this->url; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PushNotificationConfig::class, 'Google_Service_WorkspaceEvents_PushNotificationConfig');