Compact location reference embedded in posts and nearby lists.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| lat | float | ||
| lng | float |
from unifapi.models.instagram_location_lite import InstagramLocationLite
# TODO update the JSON string below
json = "{}"
# create an instance of InstagramLocationLite from a JSON string
instagram_location_lite_instance = InstagramLocationLite.from_json(json)
# print the JSON string representation of the object
print(InstagramLocationLite.to_json())
# convert the object into a dict
instagram_location_lite_dict = instagram_location_lite_instance.to_dict()
# create an instance of InstagramLocationLite from a dict
instagram_location_lite_from_dict = InstagramLocationLite.from_dict(instagram_location_lite_dict)