mirror of https://github.com/status-im/fathom.git
22 lines
384 B
Go
22 lines
384 B
Go
package models
|
|
|
|
type Visit struct {
|
|
ID int
|
|
Path string
|
|
IpAddress string
|
|
ReferrerKeyword string
|
|
ReferrerType string
|
|
ReferrerUrl string
|
|
DeviceBrand string
|
|
DeviceModel string
|
|
DeviceType string
|
|
DeviceOS string
|
|
BrowserName string
|
|
BrowserVersion string
|
|
BrowserLanguage string
|
|
ScreenResolution string
|
|
VisitorReturning bool
|
|
Country string
|
|
Timestamp string
|
|
}
|