| 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 |
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)