Token refresh response from Spotify API

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

Properties

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