Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 944 Bytes

Properties1.md

File metadata and controls

31 lines (22 loc) · 944 Bytes

Properties1

The entity properties.

Properties

Name Type Description Notes
latitude float The latitude. [optional]
longitude float The longitude. [optional]

Example

from wordlift_client.models.properties1 import Properties1

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

# convert the object into a dict
properties1_dict = properties1_instance.to_dict()
# create an instance of Properties1 from a dict
properties1_from_dict = Properties1.from_dict(properties1_dict)

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