Skip to content

Commit

Permalink
Changed format to be an array instead of a single object
Browse files Browse the repository at this point in the history
  • Loading branch information
iamtomcat committed Jan 27, 2017
1 parent 22182ac commit d07cb7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion banner.go
Expand Up @@ -9,7 +9,7 @@ package openrtb
type Banner struct {
W int `json:"w,omitempty"` // Width
H int `json:"h,omitempty"` // Height
Format *Format `json:"format,omitempty"` //Array of format objects representing the banner sizes permitted.
Format []Format `json:"format,omitempty"` //Array of format objects representing the banner sizes permitted.
WMax int `json:"wmax,omitempty"` // Width maximum DEPRECATED
HMax int `json:"hmax,omitempty"` // Height maximum DEPRECATED
WMin int `json:"wmin,omitempty"` // Width minimum DEPRECATED
Expand Down

0 comments on commit d07cb7c

Please sign in to comment.