mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
15 lines
677 B
Go
15 lines
677 B
Go
package adcom
|
|
|
|
// PlaybackMethod represents media playback methods.
|
|
type PlaybackMethod int
|
|
|
|
// Media playback methods.
|
|
const (
|
|
PlaybackPageLoadSoundOn PlaybackMethod = 1 // Initiates on Page Load with Sound On
|
|
PlaybackPageLoadSoundOff PlaybackMethod = 2 // Initiates on Page Load with Sound Off by Default
|
|
PlaybackClickSoundOn PlaybackMethod = 3 // Initiates on Click with Sound On
|
|
PlaybackMouseOverSoundOn PlaybackMethod = 4 // Initiates on Mouse-Over with Sound On
|
|
PlaybackViewportSoundOn PlaybackMethod = 5 // Initiates on Entering Viewport with Sound On
|
|
PlaybackViewportSoundOff PlaybackMethod = 6 // Initiates on Entering Viewport with Sound Off by Default
|
|
)
|