mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
12 lines
387 B
Go
12 lines
387 B
Go
package adcom1
|
|
|
|
// PodSequence identifies the pod sequence field, for use in audio and video content streams with one or more ad pods.
|
|
type PodSequence int8
|
|
|
|
// PodSequence options.
|
|
const (
|
|
PodSeqLast PodSequence = -1 // Last pod in the content stream.
|
|
PodSeqAny PodSequence = 0 // Any pod in the content stream.
|
|
PodSeqFirst PodSequence = 1 // First pod in the content stream.
|
|
)
|