email = $email; } /** * @return string */ public function getEmail() { return $this->email; } /** * Output only. The list of scopes to be made available for this service * account. Set by the CLH to https://www.googleapis.com/auth/cloud-platform * * @param string[] $scopes */ public function setScopes($scopes) { $this->scopes = $scopes; } /** * @return string[] */ public function getScopes() { return $this->scopes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ServiceAccount::class, 'Google_Service_AIPlatformNotebooks_ServiceAccount');