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

14 lines
591 B
Go

package adcom1
// EventTrackingMethod represents methods of tracking of ad events.
// Vendor specific codes may include custom measurement companies (e.g., Moat, Doubleverify, IAS, etc.).
type EventTrackingMethod int
// Available methods of tracking of ad events.
//
// Values of 500+ hold vendor-specific codes.
const (
TrackingImagePixel EventTrackingMethod = 1 // Image-Pixel: URL provided will be inserted as a 1x1 pixel at the time of the event.
TrackingJS EventTrackingMethod = 2 // JavaScript: URL provided will be inserted as a JavaScript tag at the time of the event.
)