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