Files
openrtb/adcom1/placement_position.go
T
2018-12-28 13:51:31 +02:00

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
)