mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-16 15:06:35 +03:00
16 lines
639 B
Go
16 lines
639 B
Go
package openrtb2
|
|
|
|
// SSAI indicates if server-side ad insertion (e.g., stitching an ad into an
|
|
// audio or video stream) is in use and the impact of this on asset
|
|
// and tracker retrieval.
|
|
//
|
|
// Originates from Imp.ssai property, not a separately-defined enum.
|
|
type AdInsertion int8
|
|
|
|
const (
|
|
AdInsertUnknown AdInsertion = 0 // status unknown
|
|
AdInsertClient AdInsertion = 1 // all client-side (i.e., not server-side)
|
|
AdInsertServerStitchClientTrack AdInsertion = 2 // assets stitched server-side but tracking pixels fired client-side
|
|
AdInsertServer AdInsertion = 3 // all server-side
|
|
)
|