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