mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
13 lines
469 B
Go
13 lines
469 B
Go
package adcom1
|
|
|
|
// StartDelayMode represents video or audio start delay.
|
|
type StartDelayMode int64
|
|
|
|
// Options for the video or audio start delay.
|
|
// If the start delay value is greater than 0, then the position is mid-roll and the value indicates the start delay.
|
|
const (
|
|
StartDelayPreRoll StartDelayMode = 0 // Pre-Roll
|
|
StartDelayGenericMidRoll StartDelayMode = -1 // Generic Mid-Roll
|
|
StartDelayGenericPostRoll StartDelayMode = -2 // Generic Post-Roll
|
|
)
|