Play history item returned by Spotify API

interface SpotifyPlayHistory {
    track: SpotifyTrack;
    played_at: string;
    context:
        | null
        | {
            type: string;
            href: string;
            external_urls: SpotifyExternalUrls;
            uri: string;
        };
}

Properties

played_at: string
context:
    | null
    | {
        type: string;
        href: string;
        external_urls: SpotifyExternalUrls;
        uri: string;
    }