Files
openrtb/adcom1/production_quality.go
T
2018-12-27 14:39:52 +02:00

13 lines
471 B
Go

package adcom
// ProductionQuality represents content quality.
type ProductionQuality int
// Options for content quality.
// These values are defined by the IAB; refer to www.iab.com/wp-content/uploads/2015/03/long-form-video-final.pdf for more information.
const (
ProductionProfessional ProductionQuality = 1 // Professionally Produced
ProductionProsumer ProductionQuality = 2 // Prosumer
ProductionUser ProductionQuality = 3 // User Generated (UGC)
)