We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0270dc2 commit 33daee1Copy full SHA for 33daee1
provider/ipgeolocation/response.go
@@ -39,15 +39,15 @@ type Currency struct {
39
40
type TimeZone struct {
41
Name string `json:"name"`
42
- Offset int `json:"offset"`
+ Offset float64 `json:"offset"`
43
CurrentTime string `json:"current_time"`
44
CurrentTimeUnix float64 `json:"current_time_unix"`
45
IsDST bool `json:"is_dst"`
46
- DSTSavings int `json:"dst_savings"`
+ DSTSavings int64 `json:"dst_savings"`
47
}
48
49
type Security struct {
50
- ThreatScore int `json:"threat_score"`
+ ThreatScore int64 `json:"threat_score"`
51
IsTor bool `json:"is_tor"`
52
IsProxy bool `json:"is_proxy"`
53
ProxyType string `json:"proxy_type"`
0 commit comments