name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The push notification configuration details. * * @param PushNotificationConfig $pushNotificationConfig */ public function setPushNotificationConfig(PushNotificationConfig $pushNotificationConfig) { $this->pushNotificationConfig = $pushNotificationConfig; } /** * @return PushNotificationConfig */ public function getPushNotificationConfig() { return $this->pushNotificationConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TaskPushNotificationConfig::class, 'Google_Service_WorkspaceEvents_TaskPushNotificationConfig');