areaCode = $areaCode; } /** * @return string */ public function getAreaCode() { return $this->areaCode; } /** * @param int */ public function setCountryCode($countryCode) { $this->countryCode = $countryCode; } /** * @return int */ public function getCountryCode() { return $this->countryCode; } /** * @param string */ public function setExtension($extension) { $this->extension = $extension; } /** * @return string */ public function getExtension() { return $this->extension; } /** * @param string */ public function setNationalPrefix($nationalPrefix) { $this->nationalPrefix = $nationalPrefix; } /** * @return string */ public function getNationalPrefix() { return $this->nationalPrefix; } /** * @param string[] */ public function setNumber($number) { $this->number = $number; } /** * @return string[] */ public function getNumber() { return $this->number; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TelephoneNumber::class, 'Google_Service_Contentwarehouse_TelephoneNumber');