mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
17 lines
672 B
Go
17 lines
672 B
Go
package adcom1
|
|
|
|
// PlacementPosition represents placement positions as a relative measure of visibility or prominence.
|
|
// This table has values derived from the TAG Inventory Quality Guidelines (IQG).
|
|
type PlacementPosition int8
|
|
|
|
// Placement positions.
|
|
const (
|
|
PositionAboveFold PlacementPosition = 1 // Above The Fold
|
|
PositionLocked PlacementPosition = 2 // Locked (i.e., fixed position)
|
|
PositionBelowFold PlacementPosition = 3 // Below The Fold
|
|
PositionHeader PlacementPosition = 4 // Header
|
|
PositionFooter PlacementPosition = 5 // Footer
|
|
PositionSideBar PlacementPosition = 6 // Sidebar
|
|
PositionFullScreen PlacementPosition = 7 // Fullscreen
|
|
)
|