-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentity.go
More file actions
28 lines (26 loc) · 1020 Bytes
/
entity.go
File metadata and controls
28 lines (26 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package go_itunes_api
type Entity string
const (
EntityAlbum Entity = "album"
EntityAllArtist Entity = "allArtist"
EntityAllTrack Entity = "allTrack"
EntityAudiobook Entity = "audiobook"
EntityAudiobookAuthor Entity = "audiobookAuthor"
EntityEbook Entity = "ebook"
EntityIPadSoftware Entity = "iPadSoftware"
EntityMacSoftware Entity = "macSoftware"
EntityMix Entity = "mix"
EntityMovie Entity = "movie"
EntityMovieArtist Entity = "movieArtist"
EntityMusicArtist Entity = "musicArtist"
EntityMusicTrack Entity = "musicTrack"
EntityMusicVideo Entity = "musicVideo"
EntityPodcast Entity = "podcast"
EntityPodcastAuthor Entity = "podcastAuthor"
EntityShortFilm Entity = "shortFilm"
EntityShortFilmArtist Entity = "shortFilmArtist"
EntitySoftware Entity = "software"
EntitySong Entity = "song"
EntityTvEpisode Entity = "tvEpisode"
EntityTvSeason Entity = "tvSeason"
)