Interface AuthResponse

interface AuthResponse {
    access_token: string;
    refresh_token?: string;
    token_type: string;
    expires_in: number;
}

Properties

access_token: string
refresh_token?: string
token_type: string
expires_in: number