Interface SimplifiedPlaylist

interface SimplifiedPlaylist {
    collaborative: boolean;
    description?: string;
    external_urls: ExternalUrls;
    followers: Followers;
    href: string;
    id: string;
    images: Image[];
    name: string;
    owner: UserPublic;
    public: boolean;
    snapshot_id: string;
    tracks: {
        href: string;
        total: number;
    };
    type: string;
    uri: string;
}

Properties

collaborative: boolean
description?: string
external_urls: ExternalUrls
followers: Followers
href: string
id: string
images: Image[]
name: string
owner: UserPublic
public: boolean
snapshot_id: string
tracks: {
    href: string;
    total: number;
}
type: string
uri: string