PAOIDCClient
    Preparing search index...

    Interface TokenResponse

    Token endpoint response as defined by OAuth2 and extended by OIDC.

    interface TokenResponse {
        access_token?: string;
        error?: string;
        error_description?: string;
        expires_in?: number;
        id_token?: string;
        refresh_token?: string;
        scope?: string;
        session_state?: string;
    }
    Index

    Properties

    access_token?: string
    error?: string
    error_description?: string
    expires_in?: number
    id_token?: string
    refresh_token?: string
    scope?: string
    session_state?: string