clientId = $clientId; } /** * @return string */ public function getClientId() { return $this->clientId; } /** * @param string */ public function setClientSecret($clientSecret) { $this->clientSecret = $clientSecret; } /** * @return string */ public function getClientSecret() { return $this->clientSecret; } /** * @param string[] */ public function setScopes($scopes) { $this->scopes = $scopes; } /** * @return string[] */ public function getScopes() { return $this->scopes; } /** * @param string */ public function setTokenEndpoint($tokenEndpoint) { $this->tokenEndpoint = $tokenEndpoint; } /** * @return string */ public function getTokenEndpoint() { return $this->tokenEndpoint; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig');