13 lines
380 B
Go
13 lines
380 B
Go
package types
|
|
|
|
type DeviceInfo struct {
|
|
DeviceType string `json:"device_type"`
|
|
OS string `json:"os"`
|
|
OSVersion string `json:"os_version"`
|
|
Browser string `json:"browser"`
|
|
BrowserVersion string `json:"browser_version"`
|
|
DeviceName string `json:"device_name"`
|
|
UserAgent string `json:"user_agent"`
|
|
Location string `json:"location"`
|
|
}
|