interface IOauth2Password {
    description?: string;
    flow: "password";
    scopes?: Record<string, string>;
    tokenUrl?: string;
    type: "oauth2";
}

Properties

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