From adb3bd01b967491a92e5d3d5d2c42105a04a3797 Mon Sep 17 00:00:00 2001 From: mxmCherry Date: Thu, 19 May 2022 15:25:33 +0300 Subject: [PATCH] openrtb3: update no-bid-reasons --- openrtb3/no_bid_reason.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openrtb3/no_bid_reason.go b/openrtb3/no_bid_reason.go index 64b554d..3782204 100644 --- a/openrtb3/no_bid_reason.go +++ b/openrtb3/no_bid_reason.go @@ -1,13 +1,11 @@ package openrtb3 -// NoBidReason represents OpenRTB No-Bid Reason Code enumeration. -// -// It lists the options for a bidder to signal the exchange as to why it did not offer a bid for the item. +// NoBidReason lists the options for a bidder to signal the exchange as to why it did not offer a bid for the item. type NoBidReason int64 // NoBidReason options. // -// Values of 500+ are exchange specific values; should be communicated with buyers a priori. +// Values 500+ are exchange specific values; should be communicated with buyers beforehand. const ( NoBidUnknownError NoBidReason = 0 // Unknown Error NoBidTechnicalError NoBidReason = 1 // Technical Error @@ -25,4 +23,6 @@ const ( NoBidAuthenticationUnavailable NoBidReason = 13 // Ads.cert Authentication Unavailable NoBidAuthenticationViolation NoBidReason = 14 // Ads.cert Authentication Violation NoBidInsufficientTime NoBidReason = 15 // Insufficient Auction Time + NoBidIncompleteSupplyChain NoBidReason = 16 // Incomplete SupplyChain + NoBidBlockedSupplyChainNode NoBidReason = 17 // Blocked SupplyChain Node )