Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 849 Bytes

LocationInner.md

File metadata and controls

28 lines (19 loc) · 849 Bytes

LocationInner

Properties

Name Type Description Notes

Example

from waylay.services.storage.models.location_inner import LocationInner

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

# convert the object into a dict
location_inner_dict = location_inner_instance.to_dict()
# create an instance of LocationInner from a dict
location_inner_form_dict = location_inner.from_dict(location_inner_dict)

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