Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 978 Bytes

LocationPolygon.md

File metadata and controls

30 lines (21 loc) · 978 Bytes

LocationPolygon

Properties

Name Type Description Notes
exterior List[GeoInfo]
interior List[List[GeoInfo]] [optional]

Example

from trieve_py_client.models.location_polygon import LocationPolygon

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

# convert the object into a dict
location_polygon_dict = location_polygon_instance.to_dict()
# create an instance of LocationPolygon from a dict
location_polygon_form_dict = location_polygon.from_dict(location_polygon_dict)

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