Represents a JWT token used for authentication.

interface JwtToken {
    access_token: string;
    expires_in: number;
    scope?: string;
    token_type: string;
}

Properties

access_token: string

The access token to use to authenticate requests.

expires_in: number

Expiration of the access token.

scope?: string

Authorization scope for the access token.

token_type: string

The type of access token. Always Bearer.