TokenResponse

interface TokenResponse {
    access_token: string;
    expires?: number;
    expires_in: number;
    refresh_token: string;
    token_type: "Bearer";
}

Properties

access_token: string

TokenResponse

expires?: number

TokenResponse

expires_in: number

TokenResponse

refresh_token: string

TokenResponse

token_type: "Bearer"

TokenResponse