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

     1  package openrtb_ext
     2  
     3  // ExtImpAdyoulike defines the contract for bidrequest.imp[i].ext.prebid.bidder.adyoulike
     4  type ExtImpAdyoulike struct {
     5  	// placementId, only mandatory field
     6  	PlacementId string `json:"placement"`
     7  
     8  	// Id of the forced campaign
     9  	Campaign string `json:"campaign"`
    10  	// Id of the forced track
    11  	Track string `json:"track"`
    12  	// Id of the forced creative
    13  	Creative string `json:"creative"`
    14  	// Context of the campaign values [SSP|AdServer]
    15  	Source string `json:"source"`
    16  	// Abitrary Id used for debug purpose
    17  	Debug string `json:"debug"`
    18  }