copyWithWrapped method
WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking
copyWithWrapped({
- Wrapped<
String?> ? deliveryShipId, - Wrapped<
String?> ? orderId, - Wrapped<
String?> ? deliveryId, - Wrapped<
String?> ? orderNumber, - Wrapped<
String?> ? orderDate, - Wrapped<
String?> ? orderDescription, - Wrapped<
String?> ? status, - Wrapped<
String?> ? statusDate, - Wrapped<
String?> ? dealId, - Wrapped<
String?> ? deal, - Wrapped<
String?> ? dealNumber, - Wrapped<
String?> ? trackingNumber, - Wrapped<
String?> ? shippingVendorId, - Wrapped<
String?> ? shippingVendor, - Wrapped<
String?> ? carrierId, - Wrapped<
String?> ? carrier, - Wrapped<
String?> ? onlineOrderNumber, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking copyWithWrapped(
{Wrapped<String?>? deliveryShipId,
Wrapped<String?>? orderId,
Wrapped<String?>? deliveryId,
Wrapped<String?>? orderNumber,
Wrapped<String?>? orderDate,
Wrapped<String?>? orderDescription,
Wrapped<String?>? status,
Wrapped<String?>? statusDate,
Wrapped<String?>? dealId,
Wrapped<String?>? deal,
Wrapped<String?>? dealNumber,
Wrapped<String?>? trackingNumber,
Wrapped<String?>? shippingVendorId,
Wrapped<String?>? shippingVendor,
Wrapped<String?>? carrierId,
Wrapped<String?>? carrier,
Wrapped<String?>? onlineOrderNumber,
Wrapped<String?>? dateStamp,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking(
deliveryShipId: (deliveryShipId != null
? deliveryShipId.value
: this.deliveryShipId),
orderId: (orderId != null ? orderId.value : this.orderId),
deliveryId: (deliveryId != null ? deliveryId.value : this.deliveryId),
orderNumber:
(orderNumber != null ? orderNumber.value : this.orderNumber),
orderDate: (orderDate != null ? orderDate.value : this.orderDate),
orderDescription: (orderDescription != null
? orderDescription.value
: this.orderDescription),
status: (status != null ? status.value : this.status),
statusDate: (statusDate != null ? statusDate.value : this.statusDate),
dealId: (dealId != null ? dealId.value : this.dealId),
deal: (deal != null ? deal.value : this.deal),
dealNumber: (dealNumber != null ? dealNumber.value : this.dealNumber),
trackingNumber: (trackingNumber != null
? trackingNumber.value
: this.trackingNumber),
shippingVendorId: (shippingVendorId != null
? shippingVendorId.value
: this.shippingVendorId),
shippingVendor: (shippingVendor != null
? shippingVendor.value
: this.shippingVendor),
carrierId: (carrierId != null ? carrierId.value : this.carrierId),
carrier: (carrier != null ? carrier.value : this.carrier),
onlineOrderNumber: (onlineOrderNumber != null
? onlineOrderNumber.value
: this.onlineOrderNumber),
dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
auditNote: (auditNote != null ? auditNote.value : this.auditNote),
recordTitle:
(recordTitle != null ? recordTitle.value : this.recordTitle),
fields: (fields != null ? fields.value : this.fields),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes),
translation:
(translation != null ? translation.value : this.translation));
}