bot/customer update events

This commit is contained in:
Alex Lushpai 2018-10-03 11:30:52 +03:00
parent cc25100cd7
commit ac9f0acd3e

View File

@ -34,6 +34,8 @@ const (
WsEventUserJoined string = "user_joined_chat"
WsEventUserLeave string = "user_left_chat"
WsEventUserUpdated string = "user_updated"
WsCustomerUpdated string = "customer_updated"
WsBotUpdated string = "bot_updated"
ChannelFeatureNone string = "none"
ChannelFeatureReceive string = "receive"
@ -564,6 +566,14 @@ type (
*UserRef
}
WsEventCustomerUpdatedData struct {
*UserRef
}
WsEventBotUpdatedData struct {
*UserRef
}
WsEventDialogAssignData struct {
Dialog *Dialog `json:"dialog"`
Chat *Chat `json:"chat"`