Files
openrtb/adcom1/feed_type.go
T

12 lines
291 B
Go

package adcom
// 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
)