Interface OAuth2ACAuthorizationParams

interface OAuth2ACAuthorizationParams {
    clientId: string;
    codeChallenge?: string;
    redirectUri: string;
    responseType: string;
    scope?: string;
    state?: string;
}

Properties

clientId: string
codeChallenge?: string
redirectUri: string
responseType: string
scope?: string
state?: string