Album object returned by Spotify API

interface SpotifyAlbum {
    album_type: string;
    artists: SpotifyArtist[];
    available_markets: string[];
    external_urls: SpotifyExternalUrls;
    href: string;
    id: string;
    images: SpotifyImage[];
    name: string;
    release_date: string;
    release_date_precision: string;
    total_tracks: number;
    type: string;
    uri: string;
}

Properties

album_type: string
artists: SpotifyArtist[]
available_markets: string[]
external_urls: SpotifyExternalUrls
href: string
id: string
images: SpotifyImage[]
name: string
release_date: string
release_date_precision: string
total_tracks: number
type: string
uri: string