Change variable type for list of chats (#101)
This commit is contained in:
@@ -53,10 +53,10 @@ type ListChatsChat struct {
|
||||
Chat ListChatsChatData `json:"chat"`
|
||||
|
||||
// Identifier of the first unread chat message
|
||||
FirstUnreadMessageId string `json:"first_unread_message_id"`
|
||||
FirstUnreadMessageId uint64 `json:"first_unread_message_id"`
|
||||
|
||||
// Identifier of the last message in the chat
|
||||
LastMessageId string `json:"last_message_id"`
|
||||
LastMessageId uint64 `json:"last_message_id"`
|
||||
|
||||
// Number of unread messages in the chat
|
||||
UnreadCount int64 `json:"unread_count"`
|
||||
|
||||
Reference in New Issue
Block a user