mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
13 lines
378 B
Go
13 lines
378 B
Go
package openrtb
|
|
|
|
// 5.20 Location Type
|
|
//
|
|
// Options to indicate how the geographic information was determined.
|
|
type LocationType int8
|
|
|
|
const (
|
|
LocationTypeGPSLocationServices LocationType = 1 // GPS/Location Services
|
|
LocationTypeIPAddress LocationType = 2 // IP Address
|
|
LocationTypeUserProvided LocationType = 3 // User provided (e.g., registration data)
|
|
)
|