File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,12 +46,22 @@ class WhatsappTemplateStatus
4646 */
4747 public const APPROVED = 'approved ' ;
4848
49+ public const IN_APPEAL = 'in_appeal ' ;
50+
4951 public const REJECTED = 'rejected ' ;
5052
5153 public const PENDING = 'pending ' ;
5254
5355 public const PENDING_DELETION = 'pending_deletion ' ;
5456
57+ public const DELETED = 'deleted ' ;
58+
59+ public const DISABLED = 'disabled ' ;
60+
61+ public const PAUSED = 'paused ' ;
62+
63+ public const LIMIT_EXCEEDED = 'limit_exceeded ' ;
64+
5565 /**
5666 * Gets allowable values of the enum
5767 * @return string[]
@@ -60,9 +70,14 @@ public static function getAllowableEnumValues()
6070 {
6171 return [
6272 self ::APPROVED ,
73+ self ::IN_APPEAL ,
6374 self ::REJECTED ,
6475 self ::PENDING ,
65- self ::PENDING_DELETION
76+ self ::PENDING_DELETION ,
77+ self ::DELETED ,
78+ self ::DISABLED ,
79+ self ::PAUSED ,
80+ self ::LIMIT_EXCEEDED
6681 ];
6782 }
6883}
You can’t perform that action at this time.
0 commit comments