From 632153073d69ff957339eca0c860c3b99711bc41 Mon Sep 17 00:00:00 2001 From: Vragov Roman Date: Tue, 21 Nov 2023 16:50:01 +0300 Subject: [PATCH] Add `ChannelId` field to the `CustomersRequest` struct --- v1/types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/v1/types.go b/v1/types.go index a8dd6fc..748422c 100644 --- a/v1/types.go +++ b/v1/types.go @@ -120,6 +120,7 @@ type ( CustomersRequest struct { ID uint64 `url:"id,omitempty"` + ChannelID uint64 `url:"channel_id,omitempty" json:"channel_id"` ExternalID string `url:"external_id,omitempty" json:"external_id"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"`