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

     1  package openrtb_ext
     2  
     3  // ExtApp defines the contract for bidrequest.app.ext
     4  type ExtApp struct {
     5  	Prebid ExtAppPrebid `json:"prebid"`
     6  }
     7  
     8  // ExtAppPrebid further defines the contract for bidrequest.app.ext.prebid.
     9  type ExtAppPrebid struct {
    10  	Source  string `json:"source,omitempty"`
    11  	Version string `json:"version,omitempty"`
    12  }