displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setEmail($email) { $this->email = $email; } /** * @return string */ public function getEmail() { return $this->email; } /** * @param bool */ public function setGoogleSupport($googleSupport) { $this->googleSupport = $googleSupport; } /** * @return bool */ public function getGoogleSupport() { return $this->googleSupport; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Actor::class, 'Google_Service_CloudSupport_Actor');