Skip to content

Commit 0ea0f9c

Browse files
committed
Travis update: Jul 2024 (Build 776)
[skip ci]
1 parent 2b05b0e commit 0ea0f9c

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

docs/DeliveryResult.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ Name | Type | Description | Notes
1010
**err** | [**ErrorCodeOmnichannelMachine**](ErrorCodeOmnichannelMachine.md) | | [optional]
1111
**timestamp** | **Date** | When this status was received by Omnichannel API | [optional]
1212
**priceInfo** | [**PriceInfo**](PriceInfo.md) | | [optional]
13+
**sender** | **String** | the sender of the message | [optional]
1314

1415

src/model/DeliveryResult.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@
8181
if (data.hasOwnProperty('price_info')) {
8282
obj['price_info'] = PriceInfo.constructFromObject(data['price_info']);
8383
}
84+
if (data.hasOwnProperty('sender')) {
85+
obj['sender'] = ApiClient.convertToType(data['sender'], 'String');
86+
}
8487
}
8588
return obj;
8689
}
@@ -116,6 +119,11 @@
116119
* @member {module:model/PriceInfo} price_info
117120
*/
118121
exports.prototype['price_info'] = undefined;
122+
/**
123+
* the sender of the message
124+
* @member {String} sender
125+
*/
126+
exports.prototype['sender'] = undefined;
119127

120128

121129

0 commit comments

Comments
 (0)