From ce6578ba3c7ecf9ee92d765d5a427e1e8db474a6 Mon Sep 17 00:00:00 2001 From: kota-yata Date: Wed, 1 Nov 2023 00:19:10 +0900 Subject: [PATCH] feat(models): add summary property to the Note class --- birdxplorer/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/birdxplorer/models.py b/birdxplorer/models.py index eb8c094..b7a3439 100644 --- a/birdxplorer/models.py +++ b/birdxplorer/models.py @@ -328,3 +328,4 @@ class Note(BaseModel): created_at_millis: TwitterTimestamp tweet_id: str = Field(pattern=r"^[0-9]{9,19}$") believable: NotesBelievable + summary: str