From aaaedad9fc822627dfffdd41ba353c4e1f6cea83 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Mon, 11 Sep 2023 12:37:18 +0300 Subject: [PATCH] template create setting --- v1/types.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/v1/types.go b/v1/types.go index 216b6c0..778e93d 100644 --- a/v1/types.go +++ b/v1/types.go @@ -107,6 +107,7 @@ type ChannelSettings struct { SendingPolicy SendingPolicy `json:"sending_policy,omitempty"` Suggestions ChannelSettingsSuggestions `json:"suggestions,omitempty"` Audio ChannelSettingsAudio `json:"audio"` + Template ChannelSettingsTemplate `json:"template"` } // Product type. @@ -170,6 +171,10 @@ type ChannelSettingsSuggestions struct { Email string `json:"email,omitempty"` } +type ChannelSettingsTemplate struct { + Creation bool `json:"creation,omitempty"` +} + // FullFileResponse uploaded file data. type FullFileResponse struct { ID string `json:"id,omitempty"`