Files
openrtb/openrtb3/auction_type.go
T
2022-05-12 23:49:01 -04:00

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.
)