Make another missing inbound property optional
This commit is contained in:
parent
e2c24c3ac5
commit
87b41fbdcc
|
@ -45,7 +45,7 @@ class ChannelInfo(Channel):
|
|||
type: ChannelType
|
||||
activeUserCount: int
|
||||
newChatCount: int
|
||||
newChatCountInvalid: bool
|
||||
newChatCountInvalid: Optional[bool] = None # NOTE Made optional
|
||||
lastChatLogId: Long
|
||||
lastSeenLogId: Long
|
||||
lastChatLog: Optional[Chatlog] = None
|
||||
|
|
Loading…
Reference in New Issue