Files
openrtb/adcom1/feed_type.go
T
2018-12-28 13:51:31 +02:00

12 lines
292 B
Go

package adcom1
// FeedType represents types of feeds, typically for audio.
type FeedType int8
// Types of feeds, typically for audio.
const (
FeedMusicService FeedType = 1 // Music Service
FeedRadioBroadcast FeedType = 2 // FM/AM Broadcast
FeedPodcast FeedType = 3 // Podcast
)