Type AliasIntegrationTrimEnvironmentOAuth<S>

IntegrationTrimEnvironmentOAuth<S>: IntegrationTrimEnvironmentBase & {
    authType: "OAUTH";
    clientId: string;
    clientSecret: ConstrainedSecret<S>;
    tokenUrl: string;
}

Type Parameters