Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

LocationMessageCoordinates

The coordinates of the location.

Properties

Name Type Description Notes
lat float Global latitude.
long float Global longitude.

Example

from sunshine_conversations_client.model.location_message_coordinates import LocationMessageCoordinates

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

# convert the object into a dict
location_message_coordinates_dict = location_message_coordinates_instance.to_dict()
# create an instance of LocationMessageCoordinates from a dict
location_message_coordinates_from_dict = LocationMessageCoordinates.from_dict(location_message_coordinates_dict)

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