1
0
mirror of synced 2024-11-21 20:46:05 +03:00

template create setting

This commit is contained in:
Pavel 2023-09-11 12:37:18 +03:00
parent a3fd91bceb
commit aaaedad9fc

View File

@ -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"`