mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
12 lines
388 B
Go
12 lines
388 B
Go
package adcom
|
|
|
|
// SizeUnit represents units of height and width used by creatives, assets, and placement specifications where noted.
|
|
type SizeUnit int8
|
|
|
|
// Units of height and width used by creatives, assets, and placement specifications where noted.
|
|
const (
|
|
SizeDIP SizeUnit = 1 // Device Independent Pixels (DIPS)
|
|
SizeIn SizeUnit = 2 // Inches
|
|
SizeCm SizeUnit = 3 // Centimeters
|
|
)
|