From 1175c40ab6436da10a11519275eada0093af9e0f Mon Sep 17 00:00:00 2001 From: Ryan Hails Date: Mon, 20 Aug 2018 23:21:53 -0700 Subject: [PATCH] add 2 fields --- bid.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bid.go b/bid.go index 5e7521d..bfea31a 100644 --- a/bid.go +++ b/bid.go @@ -44,6 +44,8 @@ type Bid struct { Exp int `json:"exp,omitempty"` // Advisory as to the number of seconds the bidder is willing to wait between the auction and the actual impression. ContentType string `json:"-"` // content of the bid MediaType string `json:"-"` // media of the impression e.g. video/display + OrigCurrency string `json:"orig_currency"` // original currency code before converting to USD + ExchRate string `json:"exch_rate"` // exchange rate from original currency to USD Ext Extension `json:"ext,omitempty"` }