Libraries
    Preparing search index...

    Interface OAuthFlow

    A single OAuth 2.0 flow as defined by the OpenAPI specification.

    interface OAuthFlow {
        authorizationUrl?: string;
        refreshUrl?: string;
        scopes: Record<string, string>;
        tokenUrl?: string;
    }
    Index

    Properties

    authorizationUrl?: string
    refreshUrl?: string
    scopes: Record<string, string>
    tokenUrl?: string