clientId = $clientId; } /** * @return string */ public function getClientId() { return $this->clientId; } /** * @param Secret */ public function setClientSecret(Secret $clientSecret) { $this->clientSecret = $clientSecret; } /** * @return Secret */ public function getClientSecret() { return $this->clientSecret; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Oauth2ClientCredentials::class, 'Google_Service_Connectors_Oauth2ClientCredentials');