Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 813 Bytes

File metadata and controls

28 lines (19 loc) · 813 Bytes

Coordinates

Properties

Name Type Description Notes

Example

from upstream_api_client.models.coordinates import Coordinates

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

# convert the object into a dict
coordinates_dict = coordinates_instance.to_dict()
# create an instance of Coordinates from a dict
coordinates_from_dict = Coordinates.from_dict(coordinates_dict)

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