Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 861 Bytes

Geometry.md

File metadata and controls

30 lines (21 loc) · 861 Bytes

Geometry

Properties

Name Type Description Notes
type str [optional]
coordinates List[float] [optional]

Example

from data_bridges_client.models.geometry import Geometry

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

# convert the object into a dict
geometry_dict = geometry_instance.to_dict()
# create an instance of Geometry from a dict
geometry_from_dict = Geometry.from_dict(geometry_dict)

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