Skip to content

Commit 61ff6c9

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

4 files changed

Lines changed: 18 additions & 6 deletions

File tree

docs/Model/WhatsappTemplateExample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**headerText** | **string[][]** | Example of the templated text for the header | [optional]
7+
**headerText** | **string[]** | Example of the templated text for the header | [optional]
88
**bodyText** | **string[][]** | Example of the templated text for the body | [optional]
99

1010
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)

lib/Model/WhatsappButtonType.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ class WhatsappButtonType
5252

5353
public const URL = 'url';
5454

55+
public const CATALOG = 'catalog';
56+
57+
public const FLOW = 'flow';
58+
59+
public const COPY_CODE = 'copy_code';
60+
5561
/**
5662
* Gets allowable values of the enum
5763
* @return string[]
@@ -62,7 +68,10 @@ public static function getAllowableEnumValues()
6268
self::QUICK_REPLY,
6369
self::PHONE_NUMBER,
6470
self::OTP,
65-
self::URL
71+
self::URL,
72+
self::CATALOG,
73+
self::FLOW,
74+
self::COPY_CODE
6675
];
6776
}
6877
}

lib/Model/WhatsappTemplateExample.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class WhatsappTemplateExample implements ModelInterface, ArrayAccess, \JsonSeria
5959
* @var string[]
6060
*/
6161
protected static $openAPITypes = [
62-
'headerText' => 'string[][]',
62+
'headerText' => 'string[]',
6363
'bodyText' => 'string[][]'
6464
];
6565

@@ -301,7 +301,7 @@ public function valid()
301301
/**
302302
* Gets headerText
303303
*
304-
* @return string[][]|null
304+
* @return string[]|null
305305
*/
306306
public function getHeaderText()
307307
{
@@ -311,7 +311,7 @@ public function getHeaderText()
311311
/**
312312
* Sets headerText
313313
*
314-
* @param string[][]|null $headerText Example of the templated text for the header
314+
* @param string[]|null $headerText Example of the templated text for the header
315315
*
316316
* @return self
317317
*/

lib/Model/WhatsappTemplateStatus.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ class WhatsappTemplateStatus
5050

5151
public const PENDING = 'pending';
5252

53+
public const PENDING_DELETION = 'pending_deletion';
54+
5355
/**
5456
* Gets allowable values of the enum
5557
* @return string[]
@@ -59,7 +61,8 @@ public static function getAllowableEnumValues()
5961
return [
6062
self::APPROVED,
6163
self::REJECTED,
62-
self::PENDING
64+
self::PENDING,
65+
self::PENDING_DELETION
6366
];
6467
}
6568
}

0 commit comments

Comments
 (0)