Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

InstagramHighlight

Instagram highlight reel metadata. Story contents are not surfaced because source's get_highlight_stories returned no story payload on probe (2026-05-20).

Properties

Name Type Description Notes
id str Highlight reel id, e.g. `highlight:18223279177302854`.
title str
cover_url str

Example

from unifapi.models.instagram_highlight import InstagramHighlight

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

# convert the object into a dict
instagram_highlight_dict = instagram_highlight_instance.to_dict()
# create an instance of InstagramHighlight from a dict
instagram_highlight_from_dict = InstagramHighlight.from_dict(instagram_highlight_dict)

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