From b3bce6efd9368d5e40d4ba8f4d953a6a8073f6cf Mon Sep 17 00:00:00 2001 From: Joseba Fuentes Date: Sun, 26 Nov 2023 21:47:52 +0100 Subject: [PATCH] Add replied_to_comment_id field to the comments type with the type Optional[str] to track unanswered messages. --- instagrapi/types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/instagrapi/types.py b/instagrapi/types.py index 587dcc67..fb2596e7 100644 --- a/instagrapi/types.py +++ b/instagrapi/types.py @@ -182,6 +182,7 @@ class Comment(BaseModel): created_at_utc: datetime content_type: str status: str + replied_to_comment_id: Optional[str] = None has_liked: Optional[bool] = None like_count: Optional[int] = None