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