mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
12 lines
347 B
Go
12 lines
347 B
Go
package adcom
|
|
|
|
// DeliveryMethod represents options for the delivery of video or audio content.
|
|
type DeliveryMethod int8
|
|
|
|
// Options for the delivery of video or audio content.
|
|
const (
|
|
DeliveryStreaming DeliveryMethod = 1 // Streaming
|
|
DeliveryProgressive DeliveryMethod = 2 // Progressive
|
|
DeliveryDownload DeliveryMethod = 3 // Download
|
|
)
|