mirror of
https://github.com/retailcrm/mg-bot-api-client-go.git
synced 2024-11-21 20:36:05 +03:00
add external id to user ref
This commit is contained in:
parent
a26bc83d80
commit
f2c8b2ce83
25
v1/types.go
25
v1/types.go
@ -511,16 +511,17 @@ type (
|
||||
}
|
||||
|
||||
UserRef struct {
|
||||
ID uint64 `json:"id"`
|
||||
Avatar string `json:"avatar"`
|
||||
Type string `json:"type"`
|
||||
Name string `json:"name"`
|
||||
FirstName string `json:"first_name,omitempty"`
|
||||
LastName string `json:"last_name,omitempty"`
|
||||
Phone string `json:"phone,omitempty"`
|
||||
Email string `json:"email,omitempty"`
|
||||
IsAdmin bool `json:"is_admin"`
|
||||
Available bool `json:"available"`
|
||||
ID uint64 `json:"id"`
|
||||
ExternalID uint64 `json:"external_id"`
|
||||
Avatar string `json:"avatar"`
|
||||
Type string `json:"type"`
|
||||
Name string `json:"name"`
|
||||
FirstName string `json:"first_name,omitempty"`
|
||||
LastName string `json:"last_name,omitempty"`
|
||||
Phone string `json:"phone,omitempty"`
|
||||
Email string `json:"email,omitempty"`
|
||||
IsAdmin bool `json:"is_admin"`
|
||||
Available bool `json:"available"`
|
||||
}
|
||||
|
||||
Channel struct {
|
||||
@ -722,8 +723,8 @@ type (
|
||||
}
|
||||
|
||||
WsEventUserOnlineUpdatedData struct {
|
||||
User *UsersResponseItem `json:"user"`
|
||||
Online bool `json:"online"`
|
||||
User *UserRef `json:"user"`
|
||||
Online bool `json:"online"`
|
||||
}
|
||||
|
||||
WsEventChatsDeletedData struct {
|
||||
|
Loading…
Reference in New Issue
Block a user