Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenRTB v2.6-202402 #15

Merged
merged 2 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions adcom1/pod_dedupe.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package adcom1

// PodDedupe
//
// Types of pod deduplication settings.
type PodDedupe int8

const (
PodDedupeADomain PodDedupe = 1
PodDedupeIABCategory PodDedupe = 2
PodDedupeCreativeID PodDedupe = 3
PodDedupeMediafileURL PodDedupe = 4
)
9 changes: 9 additions & 0 deletions openrtb2/video.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,15 @@ type Video struct {
// attribute with the particular banner (Section 3.2.6).
CompanionType []adcom1.CompanionType `json:"companiontype,omitempty"`

// Attribute:
// poddedupe
// Type:
// enum array; provisional
// Description:
// Indicates pod deduplication settings that will be applied to bid
// responses. Refer to List: Pod Deduplication in AdCOM 1.0.
PodDedupe []adcom1.PodDedupe `json:"poddedupe,omitempty"`

// Attribute:
// durfloors
// Type:
Expand Down
Loading