email = $email; } /** * @return string */ public function getEmail() { return $this->email; } /** * @param string */ public function setPhoneNumber($phoneNumber) { $this->phoneNumber = $phoneNumber; } /** * @return string */ public function getPhoneNumber() { return $this->phoneNumber; } /** * @param string */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getUrl() { return $this->url; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccountCustomerService::class, 'Google_Service_ShoppingContent_AccountCustomerService');