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

17 lines
536 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
)