| Name | Type | Description | Notes |
|---|---|---|---|
| ip | str | [optional] | |
| location | IpLocation | [optional] | |
| country_metadata | CountryMetadata | [optional] | |
| network | GeoNetwork | [optional] | |
| currency | Currency | [optional] |
from whoisfreaks.models.geolocation_response import GeolocationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GeolocationResponse from a JSON string
geolocation_response_instance = GeolocationResponse.from_json(json)
# print the JSON string representation of the object
print(GeolocationResponse.to_json())
# convert the object into a dict
geolocation_response_dict = geolocation_response_instance.to_dict()
# create an instance of GeolocationResponse from a dict
geolocation_response_from_dict = GeolocationResponse.from_dict(geolocation_response_dict)