Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.17 KB

File metadata and controls

37 lines (28 loc) · 1.17 KB

InstagramComment

Properties

Name Type Description Notes
id str
user InstagramUserPreview
text str
created_at float
like_count float
child_comment_count float
has_translation bool
has_liked bool
parent_comment_id str

Example

from unifapi.models.instagram_comment import InstagramComment

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

# convert the object into a dict
instagram_comment_dict = instagram_comment_instance.to_dict()
# create an instance of InstagramComment from a dict
instagram_comment_from_dict = InstagramComment.from_dict(instagram_comment_dict)

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