mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
13 lines
658 B
Go
13 lines
658 B
Go
package openrtb
|
|
|
|
// 5.11 Playback Cessation Modes
|
|
//
|
|
// Various modes for when playback terminates.
|
|
type PlaybackCessationMode int8
|
|
|
|
const (
|
|
PlaybackCessationModeVideoCompletionOrTerminatedByUser PlaybackCessationMode = 1 // On Video Completion or when Terminated by User
|
|
PlaybackCessationModeLeavingViewportOrTerminatedByUser PlaybackCessationMode = 2 // On Leaving Viewport or when Terminated by User
|
|
PlaybackCessationModeLeavingViewportUntilVideoCompletionOrTerminatedByUser PlaybackCessationMode = 3 // On Leaving Viewport Continues as a Floating/Slider Unit until Video Completion or when Terminated by User
|
|
)
|