From 54fc8958f8d10d333a09fd7a19cb639dd0da2947 Mon Sep 17 00:00:00 2001 From: Scott Kay Date: Tue, 9 Apr 2024 18:16:10 -0400 Subject: [PATCH 1/2] OpenRTB v2.6-202402 --- adcom1/pod_dedupe.go | 13 +++++++++++++ openrtb2/video.go | 9 +++++++++ 2 files changed, 22 insertions(+) create mode 100644 adcom1/pod_dedupe.go diff --git a/adcom1/pod_dedupe.go b/adcom1/pod_dedupe.go new file mode 100644 index 0000000..328a17d --- /dev/null +++ b/adcom1/pod_dedupe.go @@ -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 +) diff --git a/openrtb2/video.go b/openrtb2/video.go index e1a8c2e..4c9e726 100644 --- a/openrtb2/video.go +++ b/openrtb2/video.go @@ -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 + // 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: From be96eb15c6b1a132d29ced31d57cb7801ed76e82 Mon Sep 17 00:00:00 2001 From: Scott Kay Date: Wed, 10 Apr 2024 13:28:26 -0400 Subject: [PATCH 2/2] mark provisional --- openrtb2/video.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrtb2/video.go b/openrtb2/video.go index 4c9e726..79be589 100644 --- a/openrtb2/video.go +++ b/openrtb2/video.go @@ -377,7 +377,7 @@ type Video struct { // Attribute: // poddedupe // Type: - // enum array + // enum array; provisional // Description: // Indicates pod deduplication settings that will be applied to bid // responses. Refer to List: Pod Deduplication in AdCOM 1.0.