github.com/prebid/prebid-server/v2@v2.18.0/openrtb_ext/imp_mgid.go (about)

     1  package openrtb_ext
     2  
     3  // ExtImpMgid defines the contract for bidrequest.imp[i].ext.prebid.bidder.mgid
     4  type ExtImpMgid struct {
     5  	AccountId   string  `json:"accountId"`
     6  	PlacementId string  `json:"placementId,omitempty"`
     7  	Cur         string  `json:"cur"`
     8  	Currency    string  `json:"currency"`
     9  	BidFloor    float64 `json:"bidfloor"`
    10  	BidFloor2   float64 `json:"bidFloor"`
    11  }