copyWithWrapped method
WebApiModulesHomeControlsPurchaseOrderReturnBarCodePurchaseOrderReturnBarCode
copyWithWrapped({
- Wrapped<
int?> ? purchaseOrderReturnBarCodeId, - Wrapped<
String?> ? barCode, - Wrapped<
String?> ? inspectionNumber, - Wrapped<
String?> ? inspectionVendorId, - Wrapped<
String?> ? inspectionVendor, - Wrapped<
String?> ? manufactureDate, - Wrapped<
int?> ? printQuantity, - Wrapped<
String?> ? serialNumber, - Wrapped<
String?> ? rfId, - Wrapped<
String?> ? purchaseOrderItemId, - Wrapped<
String?> ? purchaseOrderId, - Wrapped<
int?> ? orderTranId, - Wrapped<
String?> ? internalChar, - Wrapped<
String?> ? returnContractId, - Wrapped<
String?> ? inventoryId, - Wrapped<
String?> ? scannableBarCode, - Wrapped<
String?> ? iCode, - Wrapped<
String?> ? description, - Wrapped<
String?> ? iCodeDescription, - Wrapped<
String?> ? packingSlipNumber, - Wrapped<
String?> ? warehouseId, - Wrapped<
String?> ? itemId, - Wrapped<
String?> ? purchaseId, - Wrapped<
String?> ? availableFor, - Wrapped<
String?> ? availableForDisplay, - Wrapped<
String?> ? trackedBy, - Wrapped<
bool?> ? serialNumberIsMixedCase, - 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
WebApiModulesHomeControlsPurchaseOrderReturnBarCodePurchaseOrderReturnBarCode
copyWithWrapped(
{Wrapped<int?>? purchaseOrderReturnBarCodeId,
Wrapped<String?>? barCode,
Wrapped<String?>? inspectionNumber,
Wrapped<String?>? inspectionVendorId,
Wrapped<String?>? inspectionVendor,
Wrapped<String?>? manufactureDate,
Wrapped<int?>? printQuantity,
Wrapped<String?>? serialNumber,
Wrapped<String?>? rfId,
Wrapped<String?>? purchaseOrderItemId,
Wrapped<String?>? purchaseOrderId,
Wrapped<int?>? orderTranId,
Wrapped<String?>? internalChar,
Wrapped<String?>? returnContractId,
Wrapped<String?>? inventoryId,
Wrapped<String?>? scannableBarCode,
Wrapped<String?>? iCode,
Wrapped<String?>? description,
Wrapped<String?>? iCodeDescription,
Wrapped<String?>? packingSlipNumber,
Wrapped<String?>? warehouseId,
Wrapped<String?>? itemId,
Wrapped<String?>? purchaseId,
Wrapped<String?>? availableFor,
Wrapped<String?>? availableForDisplay,
Wrapped<String?>? trackedBy,
Wrapped<bool?>? serialNumberIsMixedCase,
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 WebApiModulesHomeControlsPurchaseOrderReturnBarCodePurchaseOrderReturnBarCode(
purchaseOrderReturnBarCodeId: (purchaseOrderReturnBarCodeId != null
? purchaseOrderReturnBarCodeId.value
: this.purchaseOrderReturnBarCodeId),
barCode: (barCode != null ? barCode.value : this.barCode),
inspectionNumber: (inspectionNumber != null
? inspectionNumber.value
: this.inspectionNumber),
inspectionVendorId: (inspectionVendorId != null
? inspectionVendorId.value
: this.inspectionVendorId),
inspectionVendor: (inspectionVendor != null
? inspectionVendor.value
: this.inspectionVendor),
manufactureDate: (manufactureDate != null
? manufactureDate.value
: this.manufactureDate),
printQuantity:
(printQuantity != null ? printQuantity.value : this.printQuantity),
serialNumber:
(serialNumber != null ? serialNumber.value : this.serialNumber),
rfId: (rfId != null ? rfId.value : this.rfId),
purchaseOrderItemId: (purchaseOrderItemId != null
? purchaseOrderItemId.value
: this.purchaseOrderItemId),
purchaseOrderId: (purchaseOrderId != null
? purchaseOrderId.value
: this.purchaseOrderId),
orderTranId:
(orderTranId != null ? orderTranId.value : this.orderTranId),
internalChar:
(internalChar != null ? internalChar.value : this.internalChar),
returnContractId: (returnContractId != null
? returnContractId.value
: this.returnContractId),
inventoryId:
(inventoryId != null ? inventoryId.value : this.inventoryId),
scannableBarCode: (scannableBarCode != null
? scannableBarCode.value
: this.scannableBarCode),
iCode: (iCode != null ? iCode.value : this.iCode),
description:
(description != null ? description.value : this.description),
iCodeDescription: (iCodeDescription != null
? iCodeDescription.value
: this.iCodeDescription),
packingSlipNumber: (packingSlipNumber != null
? packingSlipNumber.value
: this.packingSlipNumber),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
itemId: (itemId != null ? itemId.value : this.itemId),
purchaseId: (purchaseId != null ? purchaseId.value : this.purchaseId),
availableFor:
(availableFor != null ? availableFor.value : this.availableFor),
availableForDisplay: (availableForDisplay != null
? availableForDisplay.value
: this.availableForDisplay),
trackedBy: (trackedBy != null ? trackedBy.value : this.trackedBy),
serialNumberIsMixedCase: (serialNumberIsMixedCase != null
? serialNumberIsMixedCase.value
: this.serialNumberIsMixedCase),
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));
}