mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
13 lines
380 B
Go
13 lines
380 B
Go
package openrtb2
|
|
|
|
// 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
|
|
)
|