From 2e4ba1e6811e85e7c079ddacce18bccf398df3e3 Mon Sep 17 00:00:00 2001 From: Shchedrin Andrei Date: Thu, 21 Jul 2022 16:57:40 +0300 Subject: [PATCH] add channel updated data --- v1/types.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/v1/types.go b/v1/types.go index d14800a..40b11fa 100644 --- a/v1/types.go +++ b/v1/types.go @@ -729,4 +729,8 @@ type ( WsEventChatsDeletedData struct { ChatIds []int64 `json:"chat_ids"` } + + WsEventChannelUpdatedData struct { + Channel *ChannelResponseItem `json:"channel"` + } )