This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
format.go
60 lines (52 loc) · 1.4 KB
/
format.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package openrtb2
import "encoding/json"
// 3.2.10 Object: Format
//
// This object represents an allowed size (i.e., height and width combination) or Flex Ad parameters for a banner impression.
// These are typically used in an array where multiple sizes are permitted.
// It is recommended that either the w/h pair or the wratio/hratio/wmin set (i.e., for Flex Ads) be specified.
type Format struct {
// Attribute:
// w
// Type:
// integer
// Description:
// Width in device independent pixels (DIPS).
W int64 `json:"w,omitempty"`
// Attribute:
// h
// Type:
// integer
// Description:
// Height in device independent pixels (DIPS).
H int64 `json:"h,omitempty"`
// Attribute:
// wratio
// Type:
// integer
// Description:
// Relative width when expressing size as a ratio
WRatio int64 `json:"wratio,omitempty"`
// Attribute:
// hratio
// Type:
// Integer
// Description:
// Relative height when expressing size as a ratio.
HRatio int64 `json:"hratio,omitempty"`
// Attribute:
// wmin
// Type:
// integer
// Description:
// The minimum width in device independent pixels (DIPS) at
// which the ad will be displayed the size is expressed as a ratio.
WMin int64 `json:"wmin,omitempty"`
// Attribute:
// ext
// Type:
// object
// Description:
// Placeholder for exchange-specific extensions to OpenRTB.
Ext json.RawMessage `json:"ext,omitempty"`
}