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

     1  package openrtb_ext
     2  
     3  // ImpExtCwire defines the contract for MakeRequests `request.imp[i].ext.bidder`
     4  type ImpExtCWire struct {
     5  	PlacementID int      `json:"placementId,omitempty"`
     6  	PageID      int      `json:"pageId,omitempty"`
     7  	CwCreative  string   `json:"cwcreative,omitempty"`
     8  	CwDebug     bool     `json:"cwdebug,omitempty"`
     9  	CwFeatures  []string `json:"cwfeatures,omitempty"`
    10  }