mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
12 lines
292 B
Go
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
|
|
)
|