openapi-fastify
    Preparing search index...

    Interface OAuth2SecurityScheme

    interface OAuth2SecurityScheme {
        description?: string;
        flows: {
            authorizationCode?: {
                authorizationUrl: string;
                refreshUrl?: string;
                scopes: { [scope: string]: string };
                tokenUrl: string;
            };
            clientCredentials?: {
                refreshUrl?: string;
                scopes: { [scope: string]: string };
                tokenUrl: string;
            };
            implicit?: {
                authorizationUrl: string;
                refreshUrl?: string;
                scopes: { [scope: string]: string };
            };
            password?: {
                refreshUrl?: string;
                scopes: { [scope: string]: string };
                tokenUrl: string;
            };
        };
        type: "oauth2";
    }
    Index

    Properties

    description?: string
    flows: {
        authorizationCode?: {
            authorizationUrl: string;
            refreshUrl?: string;
            scopes: { [scope: string]: string };
            tokenUrl: string;
        };
        clientCredentials?: {
            refreshUrl?: string;
            scopes: { [scope: string]: string };
            tokenUrl: string;
        };
        implicit?: {
            authorizationUrl: string;
            refreshUrl?: string;
            scopes: { [scope: string]: string };
        };
        password?: {
            refreshUrl?: string;
            scopes: { [scope: string]: string };
            tokenUrl: string;
        };
    }
    type: "oauth2"