Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 853 Bytes

GeoInfo.md

File metadata and controls

30 lines (21 loc) · 853 Bytes

GeoInfo

Properties

Name Type Description Notes
lat GeoTypes
lon GeoTypes

Example

from trieve_py_client.models.geo_info import GeoInfo

# TODO update the JSON string below
json = "{}"
# create an instance of GeoInfo from a JSON string
geo_info_instance = GeoInfo.from_json(json)
# print the JSON string representation of the object
print(GeoInfo.to_json())

# convert the object into a dict
geo_info_dict = geo_info_instance.to_dict()
# create an instance of GeoInfo from a dict
geo_info_form_dict = geo_info.from_dict(geo_info_dict)

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