mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
13 lines
446 B
Go
13 lines
446 B
Go
package adcom1
|
|
|
|
// PodSequence identifies the slot position in pod field, for use in audio and video ad pods.
|
|
type SlotPositionInPod int8
|
|
|
|
// PodSequence options.
|
|
const (
|
|
SlotPosLast SlotPositionInPod = -1 // Last ad in the pod.
|
|
SlotPosAny SlotPositionInPod = 0 // Any ad in the pod.
|
|
SlotPosFirst SlotPositionInPod = 1 // First ad in the pod.
|
|
SlotPosFirstOrLast SlotPositionInPod = 2 // First or Last ad in the pod.
|
|
)
|