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

fixed code style

This commit is contained in:
Ефанов Руслан 2023-05-05 14:58:26 +03:00
parent afd5571188
commit d2d285b3b2
3 changed files with 11 additions and 11 deletions

View File

@ -37,15 +37,15 @@ var templateVarAssoc = map[string]interface{}{
// Template struct.
type Template struct {
Code string `json:"code"`
ChannelID uint64 `json:"channel_id,omitempty"`
Name string `json:"name"`
Enabled bool `json:"enabled,omitempty"`
Type string `json:"type"`
Template []TemplateItem `json:"template"`
HeaderParams *HeaderParams `json:"headerParams,omitempty"`
Footer *string `json:"footer,omitempty"`
ButtonParams []ButtonParam `json:"buttonParams,omitempty"`
Code string `json:"code"`
ChannelID uint64 `json:"channel_id,omitempty"`
Name string `json:"name"`
Enabled bool `json:"enabled,omitempty"`
Type string `json:"type"`
Template []TemplateItem `json:"template"`
HeaderParams *HeaderParams `json:"headerParams,omitempty"`
Footer *string `json:"footer,omitempty"`
ButtonParams []ButtonParam `json:"buttonParams,omitempty"`
}
// TemplateItem is a part of template.

View File

@ -109,4 +109,4 @@ func TestUnmarshalMediaInteractiveTemplate(t *testing.T) {
assert.NoError(t, json.Unmarshal([]byte(input), &template))
assert.Nil(t, template.HeaderParams)
assert.Empty(t, template.ButtonParams)
}
}

View File

@ -649,4 +649,4 @@ type ButtonParam struct {
ButtonType ButtonType `json:"type"`
Text string `json:"text,omitempty"`
URLParameter string `json:"urlParameter,omitempty"`
}
}