clientId = $clientId; } /** * @return string */ public function getClientId() { return $this->clientId; } /** * Input only. Client secret from an external OAuth application. This is an * input-only field, and thus will not be set in any responses. * * @param string $clientSecret */ public function setClientSecret($clientSecret) { $this->clientSecret = $clientSecret; } /** * @return string */ public function getClientSecret() { return $this->clientSecret; } /** * Optional. Whether to use the shared OAuth client. Instances specifying this * field do not need to provide client_id and client_secret. * * @param bool $sharedOauthClientEnabled */ public function setSharedOauthClientEnabled($sharedOauthClientEnabled) { $this->sharedOauthClientEnabled = $sharedOauthClientEnabled; } /** * @return bool */ public function getSharedOauthClientEnabled() { return $this->sharedOauthClientEnabled; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OAuthConfig::class, 'Google_Service_Looker_OAuthConfig');