Files
openrtb/adcom1/pod_sequence.go
2022-05-13 00:13:02 -04:00

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.
)