@@ -36,23 +36,23 @@ class Chat(BaseModel):
3636 participants : Participants
3737 """Chat participants information."""
3838
39- title : str
40- """Display title of the chat as computed by the client/server."""
41-
4239 type : Literal ["single" , "group" ]
4340 """Chat type: 'single' for direct messages, 'group' for group chats."""
4441
4542 unread_count : int = FieldInfo (alias = "unreadCount" )
4643 """Number of unread messages."""
4744
45+ description : Optional [str ] = None
46+ """Description of the chat."""
47+
4848 is_archived : Optional [bool ] = FieldInfo (alias = "isArchived" , default = None )
4949 """True if chat is archived."""
5050
5151 is_muted : Optional [bool ] = FieldInfo (alias = "isMuted" , default = None )
52- """True if chat notifications are muted."""
52+ """True if the chat is muted."""
5353
5454 is_pinned : Optional [bool ] = FieldInfo (alias = "isPinned" , default = None )
55- """True if chat is pinned."""
55+ """True if the chat is pinned."""
5656
5757 last_activity : Optional [datetime ] = FieldInfo (alias = "lastActivity" , default = None )
5858 """Timestamp of last activity."""
@@ -62,3 +62,6 @@ class Chat(BaseModel):
6262
6363 local_chat_id : Optional [str ] = FieldInfo (alias = "localChatID" , default = None )
6464 """Local chat ID specific to this Beeper Desktop installation."""
65+
66+ title : Optional [str ] = None
67+ """Display title of the chat."""
0 commit comments