From d74d2fea2aa0092746d953ff5319394aa06e5ee7 Mon Sep 17 00:00:00 2001 From: Ivan Lutokhin Date: Tue, 15 Nov 2022 18:00:44 +0300 Subject: [PATCH] Add CustomerID field to the ChatsRequest struct --- v1/types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/v1/types.go b/v1/types.go index c73a464..e644f0d 100644 --- a/v1/types.go +++ b/v1/types.go @@ -130,6 +130,7 @@ type ( ID uint64 `url:"id,omitempty"` ChannelID uint64 `url:"channel_id,omitempty" json:"channel_id"` ChannelType string `url:"channel_type,omitempty" json:"channel_type"` + CustomerID uint64 `url:"customer_id,omitempty" json:"customer_id"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` Limit int `url:"int,omitempty"`