| Name |
Type |
Description |
Notes |
| media_type |
float |
1 = image, 2 = video |
|
| image_url |
str |
|
|
| video_url |
str |
|
|
| accessibility_caption |
str |
|
|
from unifapi.models.instagram_carousel_item import InstagramCarouselItem
# TODO update the JSON string below
json = "{}"
# create an instance of InstagramCarouselItem from a JSON string
instagram_carousel_item_instance = InstagramCarouselItem.from_json(json)
# print the JSON string representation of the object
print(InstagramCarouselItem.to_json())
# convert the object into a dict
instagram_carousel_item_dict = instagram_carousel_item_instance.to_dict()
# create an instance of InstagramCarouselItem from a dict
instagram_carousel_item_from_dict = InstagramCarouselItem.from_dict(instagram_carousel_item_dict)
[Back to Model list] [Back to API list] [Back to README]