mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
14 lines
348 B
Go
14 lines
348 B
Go
package openrtb3
|
|
|
|
// AuctionType defines an auction type.
|
|
type AuctionType int64
|
|
|
|
// AuctionType values.
|
|
const (
|
|
FirstPrice AuctionType = 1
|
|
SecondPricePlus = 2
|
|
DealPrice = 3 // the value passed in flr is the agreed upon deal price
|
|
|
|
// Values 500 and greater can be used for exchange-specific auction types.
|
|
)
|