File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 }
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
You can’t perform that action at this time.
0 commit comments