mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
13 lines
379 B
Go
13 lines
379 B
Go
package openrtb
|
|
|
|
// 5.15 Content Delivery Methods
|
|
//
|
|
// Various options for the delivery of video or audio content.
|
|
type ContentDeliveryMethod int8
|
|
|
|
const (
|
|
ContentDeliveryMethodStreaming ContentDeliveryMethod = 1 // Streaming
|
|
ContentDeliveryMethodProgressive ContentDeliveryMethod = 2 // Progressive
|
|
ContentDeliveryMethodDownload ContentDeliveryMethod = 3 // Download
|
|
)
|