mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
15 lines
383 B
Go
15 lines
383 B
Go
package openrtb2
|
|
|
|
// MarkupType defines the type of the creative markup so that it can properly be
|
|
// associated with the right sub-object of the BidRequest.Imp.
|
|
//
|
|
// Originates from Bid.mtype property, not a separately-defined enum.
|
|
type MarkupType int8
|
|
|
|
const (
|
|
MarkupBanner MarkupType = 1
|
|
MarkupVideo MarkupType = 2
|
|
MarkupAudio MarkupType = 3
|
|
MarkupNative MarkupType = 4
|
|
)
|