Skip to content

Commit 23a160a

Browse files
committed
Travis update: Apr 2025 (Build 834)
[skip ci]
1 parent 67760c7 commit 23a160a

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

docs/WhatsappTemplateStatus.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,22 @@ Template status
66

77
* `APPROVED` (value: `'approved'`)
88

9+
* `IN_APPEAL` (value: `'in_appeal'`)
10+
911
* `REJECTED` (value: `'rejected'`)
1012

1113
* `PENDING` (value: `'pending'`)
1214

1315
* `PENDING_DELETION` (value: `'pending_deletion'`)
1416

17+
* `DELETED` (value: `'deleted'`)
18+
19+
* `DISABLED` (value: `'disabled'`)
20+
21+
* `PAUSED` (value: `'paused'`)
22+
23+
* `LIMIT_EXCEEDED` (value: `'limit_exceeded'`)
24+
1525
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1626

1727

messente_api/models/whatsapp_template_status.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,14 @@ class WhatsappTemplateStatus(str, Enum):
2828
allowed enum values
2929
"""
3030
APPROVED = 'approved'
31+
IN_APPEAL = 'in_appeal'
3132
REJECTED = 'rejected'
3233
PENDING = 'pending'
3334
PENDING_DELETION = 'pending_deletion'
35+
DELETED = 'deleted'
36+
DISABLED = 'disabled'
37+
PAUSED = 'paused'
38+
LIMIT_EXCEEDED = 'limit_exceeded'
3439

3540
@classmethod
3641
def from_json(cls, json_str: str) -> Self:

0 commit comments

Comments
 (0)