mirror of
https://github.com/retailcrm/mg-bot-api-client-go.git
synced 2024-11-21 20:36:05 +03:00
commit
31cdf97775
10
v1/types.go
10
v1/types.go
@ -34,6 +34,8 @@ const (
|
|||||||
WsEventUserJoined string = "user_joined_chat"
|
WsEventUserJoined string = "user_joined_chat"
|
||||||
WsEventUserLeave string = "user_left_chat"
|
WsEventUserLeave string = "user_left_chat"
|
||||||
WsEventUserUpdated string = "user_updated"
|
WsEventUserUpdated string = "user_updated"
|
||||||
|
WsCustomerUpdated string = "customer_updated"
|
||||||
|
WsBotUpdated string = "bot_updated"
|
||||||
|
|
||||||
ChannelFeatureNone string = "none"
|
ChannelFeatureNone string = "none"
|
||||||
ChannelFeatureReceive string = "receive"
|
ChannelFeatureReceive string = "receive"
|
||||||
@ -564,6 +566,14 @@ type (
|
|||||||
*UserRef
|
*UserRef
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WsEventCustomerUpdatedData struct {
|
||||||
|
*UserRef
|
||||||
|
}
|
||||||
|
|
||||||
|
WsEventBotUpdatedData struct {
|
||||||
|
*UserRef
|
||||||
|
}
|
||||||
|
|
||||||
WsEventDialogAssignData struct {
|
WsEventDialogAssignData struct {
|
||||||
Dialog *Dialog `json:"dialog"`
|
Dialog *Dialog `json:"dialog"`
|
||||||
Chat *Chat `json:"chat"`
|
Chat *Chat `json:"chat"`
|
||||||
|
Loading…
Reference in New Issue
Block a user