Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

File metadata and controls

33 lines (24 loc) · 1.08 KB

InstagramLocationLite

Compact location reference embedded in posts and nearby lists.

Properties

Name Type Description Notes
id str
name str
lat float
lng float

Example

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)

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