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

Properties

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