interface IOauth2AccessCode {
    authorizationUrl?: string;
    description?: string;
    flow: "accessCode";
    scopes?: Record<string, string>;
    tokenUrl?: string;
    type: "oauth2";
}

Properties

authorizationUrl?: string
description?: string
flow: "accessCode"
scopes?: Record<string, string>
tokenUrl?: string
type: "oauth2"