1 | export interface MusicMoodFeedResponseRootObject {
|
2 | items: MusicMoodFeedResponseItemsItem[];
|
3 | page_info: MusicMoodFeedResponsePage_info;
|
4 | alacorn_session_id: string;
|
5 | status: string;
|
6 | }
|
7 | export interface MusicMoodFeedResponseItemsItem {
|
8 | track: MusicMoodFeedResponseTrack;
|
9 | }
|
10 | export interface MusicMoodFeedResponseTrack {
|
11 | id: string;
|
12 | title: string;
|
13 | subtitle: string;
|
14 | display_artist: string;
|
15 | cover_artwork_uri: string;
|
16 | cover_artwork_thumbnail_uri: string;
|
17 | progressive_download_url: string;
|
18 | highlight_start_times_in_ms: number[];
|
19 | is_explicit: boolean;
|
20 | dash_manifest: string;
|
21 | has_lyrics: boolean;
|
22 | audio_asset_id: null;
|
23 | }
|
24 | export interface MusicMoodFeedResponsePage_info {
|
25 | next_max_id: string;
|
26 | more_available: boolean;
|
27 | auto_load_more_available: boolean;
|
28 | }
|