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

     1  package openrtb_ext
     2  
     3  import "encoding/json"
     4  
     5  // ExtImpGrid defines the contract for bidrequest.imp[i].ext.prebid.bidder.grid
     6  type ExtImpGrid struct {
     7  	Uid      int             `json:"uid"`
     8  	Keywords json.RawMessage `json:"keywords,omitempty"`
     9  }