availability = $availability; } /** * @return string */ public function getAvailability() { return $this->availability; } /** * @param string */ public function setDomainName($domainName) { $this->domainName = $domainName; } /** * @return string */ public function getDomainName() { return $this->domainName; } /** * @param string[] */ public function setDomainNotices($domainNotices) { $this->domainNotices = $domainNotices; } /** * @return string[] */ public function getDomainNotices() { return $this->domainNotices; } /** * @param string[] */ public function setSupportedPrivacy($supportedPrivacy) { $this->supportedPrivacy = $supportedPrivacy; } /** * @return string[] */ public function getSupportedPrivacy() { return $this->supportedPrivacy; } /** * @param Money */ public function setYearlyPrice(Money $yearlyPrice) { $this->yearlyPrice = $yearlyPrice; } /** * @return Money */ public function getYearlyPrice() { return $this->yearlyPrice; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RegisterParameters::class, 'Google_Service_CloudDomains_RegisterParameters');