Interface TokenResponse

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

Properties

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