This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathbid_response.go
83 lines (73 loc) · 2.31 KB
/
bid_response.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package openrtb2
import (
"encoding/json"
"github.com/mxmCherry/openrtb/v17/openrtb3"
)
// 4.3.1 Object: BidResponse
//
// This object is the top-level bid response object (i.e., the unnamed outer JSON object).
// The id attribute is a reflection of the bid request ID for logging purposes.
// Similarly, bidid is an optional response tracking ID for bidders.
// If specified, it can be included in the subsequent win notice call if the bidder wins.
// At least one seatbid object is required, which contains at least one bid for an impression.
// Other attributes are optional.
//
// To express a “no-bid”, the options are to return an empty response with HTTP 204.
// Alternately if the bidder wishes to convey to the exchange a reason for not bidding, just a BidResponse object is returned with a reason code in the nbr attribute.
type BidResponse struct {
// Attribute:
// id
// Type:
// string; required
// Description:
// ID of the bid request to which this is a response.
ID string `json:"id"`
// Attribute:
// seatbid
// Type:
// object array
// Description:
// Array of seatbid objects; 1+ required if a bid is to be made.
SeatBid []SeatBid `json:"seatbid,omitempty"`
// Attribute:
// bidid
// Type:
// string
// Description:
// Bidder generated response ID to assist with logging/tracking.
BidID string `json:"bidid,omitempty"`
// Attribute:
// cur
// Type:
// string; default “USD”
// Description:
// Bid currency using ISO-4217 alpha codes.
Cur string `json:"cur,omitempty"`
// Attribute:
// customdata
// Type:
// string
// Description:
// Optional feature to allow a bidder to set data in the
// exchange’s cookie. The string must be in base85 cookie safe
// characters and be in any format. Proper JSON encoding must
// be used to include “escaped” quotation marks.
CustomData string `json:"customdata,omitempty"`
// Attribute:
// nbr
// Type:
// integer
// Description:
// Reason for not bidding. Refer to List: No-Bid Reason Codes in
// OpenRTB 3.0.
// Note:
// OpenRTB <=2.5 defined only reasons 0..10.
NBR *openrtb3.NoBidReason `json:"nbr,omitempty"`
// Attribute:
// ext
// Type:
// object
// Description:
// Placeholder for bidder-specific extensions to OpenRTB.
Ext json.RawMessage `json:"ext,omitempty"`
}