Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.18 KB

File metadata and controls

38 lines (29 loc) · 1.18 KB

InstagramLocation

Instagram location profile (full). id is the numeric source location_id.

Properties

Name Type Description Notes
id str
name str
category str
lat float
lng float
city str
address str
phone str
media_count float

Example

from unifapi.models.instagram_location import InstagramLocation

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

# convert the object into a dict
instagram_location_dict = instagram_location_instance.to_dict()
# create an instance of InstagramLocation from a dict
instagram_location_from_dict = InstagramLocation.from_dict(instagram_location_dict)

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