Files
openrtb/adcom1/device_type.go
T
2022-05-12 23:33:01 -04:00

18 lines
582 B
Go

package adcom1
// DeviceType represents types of devices.
// This table has values derived from the TAG Inventory Quality Guidelines (IQG).
type DeviceType int8
// Types of devices.
const (
DeviceMobile DeviceType = 1 // Mobile/Tablet - General
DevicePC DeviceType = 2 // Personal Computer
DeviceTV DeviceType = 3 // Connected TV
DevicePhone DeviceType = 4 // Phone
DeviceTablet DeviceType = 5 // Tablet
DeviceConnected DeviceType = 6 // Connected Device
DeviceSetTopBox DeviceType = 7 // Set Top Box
DeviceOOH DeviceType = 8 // OOH Device
)