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

     1  package openrtb_ext
     2  
     3  // ExtImpConsumable defines the contract for bidrequest.imp[i].ext.prebid.bidder.consumable
     4  type ExtImpConsumable struct {
     5  	NetworkId int `json:"networkId,omitempty"`
     6  	SiteId    int `json:"siteId,omitempty"`
     7  	UnitId    int `json:"unitId,omitempty"`
     8  	/* UnitName gets used as a classname and in the URL when building the ad markup */
     9  	UnitName    string `json:"unitName,omitempty"`
    10  	PlacementId string `json:"placementid,omitempty"`
    11  }