Interface OAuth2ACTokenParams

interface OAuth2ACTokenParams {
    clientId: string;
    clientSecret?: string;
    code: string;
    codeVerifier?: string;
    grantType: string;
    redirectUri?: string;
}

Properties

clientId: string
clientSecret?: string
code: string
codeVerifier?: string
grantType: string
redirectUri?: string