mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
12 lines
544 B
Go
12 lines
544 B
Go
package adcom1
|
|
|
|
// PlaybackCessationMode represents modes for when media playback terminates.
|
|
type PlaybackCessationMode int8
|
|
|
|
// Modes for when media playback terminates.
|
|
const (
|
|
PlaybackCompletion PlaybackCessationMode = 1 // On Video Completion or when Terminated by User
|
|
PlaybackLeavingViewport PlaybackCessationMode = 2 // On Leaving Viewport or when Terminated by User
|
|
PlaybackFloating PlaybackCessationMode = 3 // On Leaving Viewport Continues as a Floating/Slider Unit until Video Completion or when Terminated by User
|
|
)
|