domain = $domain; } /** * @return string */ public function getDomain() { return $this->domain; } /** * Whether client is allowed to provide a different user name. * * @param bool $isUserNameEditable */ public function setIsUserNameEditable($isUserNameEditable) { $this->isUserNameEditable = $isUserNameEditable; } /** * @return bool */ public function getIsUserNameEditable() { return $this->isUserNameEditable; } /** * User name in the email address. e.g. "foo" in foo@gmail.com * * @param string $user */ public function setUser($user) { $this->user = $user; } /** * @return string */ public function getUser() { return $this->user; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EmailVerificationData::class, 'Google_Service_MyBusinessVerifications_EmailVerificationData');