@@ -16,6 +16,7 @@ class Order {
1616 state ,
1717 allocationState ,
1818 priceCentsUsd ,
19+ patchFeeCentsUsd ,
1920 allocations ,
2021 metadata
2122 ) {
@@ -27,6 +28,7 @@ class Order {
2728 state ,
2829 allocationState ,
2930 priceCentsUsd ,
31+ patchFeeCentsUsd ,
3032 allocations ,
3133 metadata
3234 ) ;
@@ -40,6 +42,7 @@ class Order {
4042 state ,
4143 allocationState ,
4244 priceCentsUsd ,
45+ patchFeeCentsUsd ,
4346 allocations ,
4447 metadata
4548 ) {
@@ -49,6 +52,7 @@ class Order {
4952 obj [ 'state' ] = state ;
5053 obj [ 'allocation_state' ] = allocationState ;
5154 obj [ 'price_cents_usd' ] = priceCentsUsd ;
55+ obj [ 'patch_fee_cents_usd' ] = patchFeeCentsUsd ;
5256 obj [ 'allocations' ] = allocations ;
5357 obj [ 'metadata' ] = metadata ;
5458 }
@@ -90,6 +94,13 @@ class Order {
9094 ) ;
9195 }
9296
97+ if ( data . hasOwnProperty ( 'patch_fee_cents_usd' ) ) {
98+ obj [ 'patch_fee_cents_usd' ] = ApiClient . convertToType (
99+ data [ 'patch_fee_cents_usd' ] ,
100+ 'String'
101+ ) ;
102+ }
103+
93104 if ( data . hasOwnProperty ( 'allocations' ) ) {
94105 obj [ 'allocations' ] = ApiClient . convertToType ( data [ 'allocations' ] , [
95106 Allocation
@@ -116,6 +127,8 @@ Order.prototype['allocation_state'] = undefined;
116127
117128Order . prototype [ 'price_cents_usd' ] = undefined ;
118129
130+ Order . prototype [ 'patch_fee_cents_usd' ] = undefined ;
131+
119132Order . prototype [ 'allocations' ] = undefined ;
120133
121134Order . prototype [ 'metadata' ] = undefined ;
0 commit comments