Instagram location profile (full). id is the numeric source location_id.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| category | str | ||
| lat | float | ||
| lng | float | ||
| city | str | ||
| address | str | ||
| phone | str | ||
| media_count | float |
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)