name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setNotifier($notifier) { $this->notifier = $notifier; } /** * @return string */ public function getNotifier() { return $this->notifier; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(NotifierMetadata::class, 'Google_Service_CloudBuild_NotifierMetadata');