UpdateLocation.md 1002 Bytes

UpdateLocation

Properties

Name Type Description Notes
location_id int
lat float [optional]
long float [optional]
details object [optional]

Example

from openapi_client.models.update_location import UpdateLocation

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

# convert the object into a dict
update_location_dict = update_location_instance.to_dict()
# create an instance of UpdateLocation from a dict
update_location_from_dict = UpdateLocation.from_dict(update_location_dict)

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