mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
15 lines
490 B
Go
15 lines
490 B
Go
package adcom1
|
|
|
|
// ClickType represents types of creative activation (i.e., click) behavior types.
|
|
type ClickType int
|
|
|
|
// Types of creative activation (i.e., click) behavior types.
|
|
//
|
|
// Values of 500+ hold vendor-specific codes.
|
|
const (
|
|
ClickNonClickable ClickType = 0 // Non-Clickable
|
|
ClickUnknown ClickType = 1 // Clickable - Details Unknown
|
|
ClickEmbedded ClickType = 2 // Clickable - Embedded Browser/Webview
|
|
ClickNative ClickType = 3 // Clickable - Native Browser
|
|
)
|