Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Album ¶
type Album struct { ID uint `json:"id" mapstructure:"id"` Name string `json:"title" mapstructure:"title"` Artist Artist `json:"artist" mapstructure:"artist"` Artists []Artist `json:"artists" mapstructure:"artists"` Tracks int `json:"numberOfTracks" mapstructure:"numberOfTracks"` Duration int `json:"duration" mapstructure:"duration"` Copyright string `json:"copyright" mapstructure:"copyright"` Explicit bool `json:"explicit" mapstructure:"explicit"` ImgURL string }
type AlbumShort ¶
type SearchResponse ¶
type Tidal ¶
type Track ¶
type Track struct { ID uint `json:"id" mapstructure:"id"` Name string `json:"title" mapstructure:"title"` Duration int `json:"duration" mapstructure:"duration"` Track int `json:"trackNumber" mapstructure:"trackNumber"` Disc int `json:"volumeNumber" mapstructure:"volumeNumber"` Version int `json:"version" mapstructure:"version"` Popularity int `json:"popularity" mapstructure:"popularity"` Artist Artist `json:"artist" mapstructure:"artist"` Artists []Artist `json:"artists" mapstructure:"artists"` Album AlbumShort `json:"album" mapstructure:"album"` Available bool `json:"streamReady" mapstructure:"streamReady"` Format string `json:"type" mapstructure:"type"` Explicit bool `json:"explicit" mapstructure:"explicit"` }
Click to show internal directories.
Click to hide internal directories.