Files
openrtb/adcom1/expandable_direction.go
mxmCherry 516ccc6485 openrtb2: resolve Banner TODOs
- bring back removed fields - only deprecate, do not remove
- reuse adcom1 enums
2022-05-16 22:06:14 +03:00

15 lines
637 B
Go

package adcom1
// ExpandableDirection represents 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
// Directions in which an expandable ad may expand.
const (
ExpandableLeft ExpandableDirection = 1 // Left
ExpandableRight ExpandableDirection = 2 // Right
ExpandableUp ExpandableDirection = 3 // Up
ExpandableDown ExpandableDirection = 4 // Down
ExpandableFullScreen ExpandableDirection = 5 // Full Screen
ExpandableResize ExpandableDirection = 6 // Resize/Minimize (make smaller)
)