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 setTenantId($tenantId) { $this->tenantId = $tenantId; } /** * @return string */ public function getTenantId() { return $this->tenantId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ClientSecretCredentials::class, 'Google_Service_VMMigrationService_ClientSecretCredentials');