@@ -242,6 +242,9 @@ extension Order {
242242 parentID: CopiableProp < Int64 > = . copy,
243243 customerID: CopiableProp < Int64 > = . copy,
244244 orderKey: CopiableProp < String > = . copy,
245+ isEditable: CopiableProp < Bool > = . copy,
246+ needsPayment: CopiableProp < Bool > = . copy,
247+ needsProcessing: CopiableProp < Bool > = . copy,
245248 number: CopiableProp < String > = . copy,
246249 status: CopiableProp < OrderStatusEnum > = . copy,
247250 currency: CopiableProp < String > = . copy,
@@ -273,6 +276,9 @@ extension Order {
273276 let parentID = parentID ?? self . parentID
274277 let customerID = customerID ?? self . customerID
275278 let orderKey = orderKey ?? self . orderKey
279+ let isEditable = isEditable ?? self . isEditable
280+ let needsPayment = needsPayment ?? self . needsPayment
281+ let needsProcessing = needsProcessing ?? self . needsProcessing
276282 let number = number ?? self . number
277283 let status = status ?? self . status
278284 let currency = currency ?? self . currency
@@ -305,6 +311,9 @@ extension Order {
305311 parentID: parentID,
306312 customerID: customerID,
307313 orderKey: orderKey,
314+ isEditable: isEditable,
315+ needsPayment: needsPayment,
316+ needsProcessing: needsProcessing,
308317 number: number,
309318 status: status,
310319 currency: currency,
0 commit comments