Add UsersResponseItem field to the Available struct

This commit is contained in:
Pavel 2022-12-29 09:03:16 +03:00 committed by GitHub
commit 21e9551b32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -265,7 +265,9 @@ type (
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at,omitempty"`
RevokedAt string `json:"revoked_at,omitempty"`
Available bool `json:"available"`
IsOnline bool `json:"is_online"`
Connected bool `json:"connected"`
IsActive bool `json:"is_active"`
IsTechnicalAccount bool `json:"is_technical_account"`
Avatar string `json:"avatar_url,omitempty"`
@ -738,6 +740,7 @@ type (
WsEventUserOnlineUpdatedData struct {
User *UserRef `json:"user"`
Online bool `json:"online"`
Connected bool `json:"connected"`
}
WsEventChatsDeletedData struct {