1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package data
- import (
- "time"
- "github.com/scraperwall/ipmeta"
- )
- type Fingerprint struct {
-
- ClientID string `bson:"cid" json:"cid" form:"cid"`
- Remote string `bson:"remote" json:"remote" form:"remote"`
- Url string `bson:"url" json:"url" form:"url"`
- Fingerprint string `bson:"fp" json:"fp" form:"fp"`
- CreatedAt time.Time `bson:"created_at" json:"created_at" form:"created_at"`
- Source string `bson:"source" json:"source" form:"source"`
- XForwardedFor string `bson:"x_forwarded_for" json:"x-forwarded-for" form:"x_forwarded_for"`
- XRealIP string `bson:"x_real_ip" json:"x-real-ip" form:"x_real_ip"`
- XScwIP string `bson:"x_scw_ip" json:"x-scw-ip" form:"x_scw_ip"`
- Data map[string]interface{} `bson:"data" json:"data" form:"data"`
- Bot bool `bson:"bot" json:"b" form:"b"`
- Country string `bson:"country" json:"country" form:"country"`
- Extra map[string]string `bson:"extra" json:"extra" form:"extra"`
- IPMeta *ipmeta.Meta `bson:"meta" json:"meta" form:"meta"`
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
|