The entity properties.
Name | Type | Description | Notes |
---|---|---|---|
latitude | float | The latitude. | [optional] |
longitude | float | The longitude. | [optional] |
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)