Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

GeolocationResponse

Properties

Name Type Description Notes
ip str [optional]
location IpLocation [optional]
country_metadata CountryMetadata [optional]
network GeoNetwork [optional]
currency Currency [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]