Skip to content

Commit

Permalink
Change Video.PodID to a string, as per the spec (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-burger-ttd authored Jan 18, 2023
1 parent 047080c commit e1a4af7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openrtb2/audio.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ type Audio struct {
// within a bid request share the same podid, this indicates that
// those impression opportunities belong to the same audio ad
// pod.
PodID int64 `json:"podid,omitempty"`
PodID string `json:"podid,omitempty"`

// Attribute:
// podid
Expand Down
2 changes: 1 addition & 1 deletion openrtb2/video.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ type Video struct {
// within a bid request share the same podid, this indicates that
// those impression opportunities belong to the same video ad
// pod.
PodID int64 `json:"podid,omitempty"`
PodID string `json:"podid,omitempty"`

// Attribute:
// podseq
Expand Down

0 comments on commit e1a4af7

Please sign in to comment.