mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
12 lines
411 B
Go
12 lines
411 B
Go
package adcom
|
|
|
|
// LocationType represents options to indicate how the geographic information was determined.
|
|
type LocationType int
|
|
|
|
// Options to indicate how the geographic information was determined.
|
|
const (
|
|
LocationGPS LocationType = 1 // GPS/Location Services
|
|
LocationIP LocationType = 2 // IP Address
|
|
LocationUserProvided LocationType = 3 // User Provided (e.g., registration data)
|
|
)
|