1
0
mirror of synced 2024-11-22 13:06:05 +03:00

add rejected_reason and verification_status fields for template

This commit is contained in:
Pavel 2023-10-16 15:45:51 +03:00 committed by GitHub
commit a29500a6aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 12 deletions

View File

@ -48,6 +48,8 @@ type Template struct {
ButtonParams []ButtonParam `json:"buttonParams,omitempty"` ButtonParams []ButtonParam `json:"buttonParams,omitempty"`
Lang string `json:"lang,omitempty"` Lang string `json:"lang,omitempty"`
Category string `json:"category,omitempty"` Category string `json:"category,omitempty"`
RejectedReason string `json:"rejected_reason,omitempty"`
VerificationStatus string `json:"verification_status,omitempty"`
} }
// TemplateItem is a part of template. // TemplateItem is a part of template.

View File

@ -89,7 +89,9 @@ func TestUnmarshalMediaInteractiveTemplate(t *testing.T) {
"type": "QUICK_REPLY", "type": "QUICK_REPLY",
"text": "Yes" "text": "Yes"
} }
] ],
"rejected_reason": "NONE",
"status": "APPROVED"
}` }`
assert.NoError(t, json.Unmarshal([]byte(input), &template)) assert.NoError(t, json.Unmarshal([]byte(input), &template))