Skip to content

Commit 551ba7c

Browse files
committed
Travis update: Apr 2025 (Build 834)
[skip ci]
1 parent 61ff6c9 commit 551ba7c

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

lib/Model/WhatsappTemplateStatus.php

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)