copyWithWrapped method
WebApiModulesInventoryUnretiredUnretired
copyWithWrapped({
- Wrapped<
String?> ? unretiredId, - Wrapped<
String?> ? retiredId, - Wrapped<
String?> ? unretiredDate, - Wrapped<
String?> ? warehouseId, - Wrapped<
String?> ? warehouseCode, - Wrapped<
String?> ? warehouse, - Wrapped<
String?> ? inventoryId, - Wrapped<
String?> ? iCode, - Wrapped<
String?> ? itemDescription, - Wrapped<
String?> ? itemId, - Wrapped<
String?> ? barCode, - Wrapped<
String?> ? serialNumber, - Wrapped<
String?> ? rfId, - Wrapped<
String?> ? unretiredById, - Wrapped<
String?> ? unretiredBy, - Wrapped<
String?> ? unretiredReasonId, - Wrapped<
String?> ? unretiredReason, - Wrapped<
String?> ? reasonType, - Wrapped<
double?> ? unretiredQuantity, - Wrapped<
String?> ? unretiredNotes, - 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
WebApiModulesInventoryUnretiredUnretired copyWithWrapped(
{Wrapped<String?>? unretiredId,
Wrapped<String?>? retiredId,
Wrapped<String?>? unretiredDate,
Wrapped<String?>? warehouseId,
Wrapped<String?>? warehouseCode,
Wrapped<String?>? warehouse,
Wrapped<String?>? inventoryId,
Wrapped<String?>? iCode,
Wrapped<String?>? itemDescription,
Wrapped<String?>? itemId,
Wrapped<String?>? barCode,
Wrapped<String?>? serialNumber,
Wrapped<String?>? rfId,
Wrapped<String?>? unretiredById,
Wrapped<String?>? unretiredBy,
Wrapped<String?>? unretiredReasonId,
Wrapped<String?>? unretiredReason,
Wrapped<String?>? reasonType,
Wrapped<double?>? unretiredQuantity,
Wrapped<String?>? unretiredNotes,
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 WebApiModulesInventoryUnretiredUnretired(
unretiredId:
(unretiredId != null ? unretiredId.value : this.unretiredId),
retiredId: (retiredId != null ? retiredId.value : this.retiredId),
unretiredDate:
(unretiredDate != null ? unretiredDate.value : this.unretiredDate),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
warehouseCode:
(warehouseCode != null ? warehouseCode.value : this.warehouseCode),
warehouse: (warehouse != null ? warehouse.value : this.warehouse),
inventoryId:
(inventoryId != null ? inventoryId.value : this.inventoryId),
iCode: (iCode != null ? iCode.value : this.iCode),
itemDescription: (itemDescription != null
? itemDescription.value
: this.itemDescription),
itemId: (itemId != null ? itemId.value : this.itemId),
barCode: (barCode != null ? barCode.value : this.barCode),
serialNumber:
(serialNumber != null ? serialNumber.value : this.serialNumber),
rfId: (rfId != null ? rfId.value : this.rfId),
unretiredById:
(unretiredById != null ? unretiredById.value : this.unretiredById),
unretiredBy:
(unretiredBy != null ? unretiredBy.value : this.unretiredBy),
unretiredReasonId: (unretiredReasonId != null
? unretiredReasonId.value
: this.unretiredReasonId),
unretiredReason: (unretiredReason != null
? unretiredReason.value
: this.unretiredReason),
reasonType: (reasonType != null ? reasonType.value : this.reasonType),
unretiredQuantity: (unretiredQuantity != null
? unretiredQuantity.value
: this.unretiredQuantity),
unretiredNotes: (unretiredNotes != null
? unretiredNotes.value
: this.unretiredNotes),
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));
}