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

13 lines
549 B
Go

package adcom1
// MediaRating represents media ratings used in describing content based on the TAG Inventory Quality Guidelines (IQG) v2.1 categorization.
// Refer to www.iab.com/guidelines/digital-video-suite for more information.
type MediaRating int8
// Media ratings used in describing content based on the TAG Inventory Quality Guidelines (IQG) v2.1 categorization.
const (
MediaRatingAll MediaRating = 1 // All Audiences
MediaRatingOver12 MediaRating = 2 // Everyone Over Age 12
MediaRatingMature MediaRating = 3 // Mature Audiences
)