mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
15 lines
551 B
Go
15 lines
551 B
Go
package openrtb
|
|
|
|
// 5.5 Expandable Direction
|
|
//
|
|
// Directions in which an expandable ad may expand, given the positioning of the ad unit on the page and constraints imposed by the content.
|
|
type ExpandableDirection int8
|
|
|
|
const (
|
|
ExpandableDirectionLeft ExpandableDirection = 1 // Left
|
|
ExpandableDirectionRight ExpandableDirection = 2 // Right
|
|
ExpandableDirectionUp ExpandableDirection = 3 // Up
|
|
ExpandableDirectionDown ExpandableDirection = 4 // Down
|
|
ExpandableDirectionFullScreen ExpandableDirection = 5 // Full Screen
|
|
)
|