Files
openrtb/adcom1/delivery_method.go
T
2018-12-28 13:51:31 +02:00

12 lines
348 B
Go

package adcom1
// 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
)