From 31db9ce95166d3b331093d044ac8554c24cf57c0 Mon Sep 17 00:00:00 2001 From: Vlasov Date: Tue, 13 Feb 2024 15:47:37 +0300 Subject: [PATCH] Added Paused and Disabled template statuses --- v1/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v1/types.go b/v1/types.go index 6caaabc..0d24281 100644 --- a/v1/types.go +++ b/v1/types.go @@ -732,6 +732,8 @@ const ( TemplateStatusPending TemplateVerificationStatus = "pending" TemplateStatusRejected TemplateVerificationStatus = "rejected" TemplateStatusNew TemplateVerificationStatus = "new" + TemplateStatusPaused TemplateVerificationStatus = "paused" + TemplateStatusDisabled TemplateVerificationStatus = "disabled" ) type TemplateRejectionReason string