export TokenResponse

interface TokenResponse {
    access_token?: null | string;
    expires_in?: number;
    id_token?: null | string;
    refresh_token?: null | string;
    scope?: null | string;
    token_type?: null | string;
}

Properties

access_token?: null | string
expires_in?: number
id_token?: null | string
refresh_token?: null | string
scope?: null | string
token_type?: null | string