mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
11 lines
354 B
Go
11 lines
354 B
Go
package adcom1
|
|
|
|
// LinearityMode represents options for media linearity, typically for video.
|
|
type LinearityMode int8
|
|
|
|
// Options for media linearity, typically for video.
|
|
const (
|
|
LinearityLinear LinearityMode = 1 // Linear (i.e., In-Stream such as Pre-Roll, Mid-Roll, Post-Roll)
|
|
LinearityNonLinear LinearityMode = 2 // Non-Linear (i.e., Overlay)
|
|
)
|