description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setPubsubTopic($pubsubTopic) { $this->pubsubTopic = $pubsubTopic; } /** * @return string */ public function getPubsubTopic() { return $this->pubsubTopic; } /** * @param string */ public function setServiceAccount($serviceAccount) { $this->serviceAccount = $serviceAccount; } /** * @return string */ public function getServiceAccount() { return $this->serviceAccount; } /** * @param StreamingConfig */ public function setStreamingConfig(StreamingConfig $streamingConfig) { $this->streamingConfig = $streamingConfig; } /** * @return StreamingConfig */ public function getStreamingConfig() { return $this->streamingConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(NotificationConfig::class, 'Google_Service_SecurityCommandCenter_NotificationConfig');