domain = $domain; } /** * @return string */ public function getDomain() { return $this->domain; } /** * @param string */ public function setEmail($email) { $this->email = $email; } /** * @return string */ public function getEmail() { return $this->email; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setPhotoUrl($photoUrl) { $this->photoUrl = $photoUrl; } /** * @return string */ public function getPhotoUrl() { return $this->photoUrl; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleAppsScriptTypeUser::class, 'Google_Service_Script_GoogleAppsScriptTypeUser');