Skip to content

Commit d07cb7c

Browse files
committed
Changed format to be an array instead of a single object
1 parent 22182ac commit d07cb7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

banner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package openrtb
99
type Banner struct {
1010
W int `json:"w,omitempty"` // Width
1111
H int `json:"h,omitempty"` // Height
12-
Format *Format `json:"format,omitempty"` //Array of format objects representing the banner sizes permitted.
12+
Format []Format `json:"format,omitempty"` //Array of format objects representing the banner sizes permitted.
1313
WMax int `json:"wmax,omitempty"` // Width maximum DEPRECATED
1414
HMax int `json:"hmax,omitempty"` // Height maximum DEPRECATED
1515
WMin int `json:"wmin,omitempty"` // Width minimum DEPRECATED

0 commit comments

Comments
 (0)