1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# GeoIPInformation
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**geoname_id** | **number** | | [optional] [default to undefined]
**continent_code** | **string** | | [optional] [default to undefined]
**continent_name** | **string** | | [optional] [default to undefined]
**country_iso** | **string** | The ISO code of the country associated with the IP address. | [default to undefined]
**country_name** | **string** | | [optional] [default to undefined]
**subdivision_1_iso** | **string** | | [optional] [default to undefined]
**subdivision_1_name** | **string** | | [optional] [default to undefined]
**subdivision_2_iso** | **string** | | [optional] [default to undefined]
**subdivision_2_name** | **string** | | [optional] [default to undefined]
**city_name** | **string** | | [optional] [default to undefined]
**metro_code** | **number** | | [optional] [default to undefined]
**time_zone** | **string** | | [optional] [default to undefined]
**is_in_european_union** | **boolean** | | [optional] [default to undefined]
**updated** | **string** | | [optional] [default to undefined]
**ip** | **string** | | [default to undefined]
**registered_country_iso** | **string** | | [optional] [default to undefined]
**is_anonymous** | **boolean** | | [optional] [default to undefined]
**is_anonymous_vpn** | **boolean** | | [optional] [default to undefined]
**is_hosting_provider** | **boolean** | | [optional] [default to undefined]
**is_public_proxy** | **boolean** | | [optional] [default to undefined]
**is_tor_exit_node** | **boolean** | | [optional] [default to undefined]
**is_residential_proxy** | **boolean** | | [optional] [default to undefined]
**autonomous_system_number** | **number** | | [optional] [default to undefined]
**autonomous_system_organization** | **string** | | [optional] [default to undefined]
**domain** | **string** | | [optional] [default to undefined]
**isp** | **string** | | [optional] [default to undefined]
**mobile_country_code** | **string** | | [optional] [default to undefined]
**mobile_network_code** | **string** | | [optional] [default to undefined]
**network** | **string** | | [optional] [default to undefined]
**organization** | **string** | | [optional] [default to undefined]
**static_ip_score** | **number** | | [optional] [default to undefined]
**user_type** | [**UserType**](UserType.md) | | [optional] [default to undefined]
**postal_code** | **string** | | [optional] [default to undefined]
**latitude** | **number** | | [optional] [default to undefined]
**longitude** | **number** | | [optional] [default to undefined]
**accuracy_radius** | **number** | | [optional] [default to undefined]
## Example
```typescript
import { GeoIPInformation } from './api';
const instance: GeoIPInformation = {
geoname_id,
continent_code,
continent_name,
country_iso,
country_name,
subdivision_1_iso,
subdivision_1_name,
subdivision_2_iso,
subdivision_2_name,
city_name,
metro_code,
time_zone,
is_in_european_union,
updated,
ip,
registered_country_iso,
is_anonymous,
is_anonymous_vpn,
is_hosting_provider,
is_public_proxy,
is_tor_exit_node,
is_residential_proxy,
autonomous_system_number,
autonomous_system_organization,
domain,
isp,
mobile_country_code,
mobile_network_code,
network,
organization,
static_ip_score,
user_type,
postal_code,
latitude,
longitude,
accuracy_radius,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|