copyWithWrapped method
WebApiModulesHomeControlsServiceOrderItemServiceOrderItem
copyWithWrapped({
- Wrapped<
String?> ? serviceOrderItemId, - Wrapped<
String?> ? repairId, - Wrapped<
String?> ? repairNumber, - Wrapped<
String?> ? barCode, - Wrapped<
String?> ? serialNumber, - Wrapped<
String?> ? repairICode, - Wrapped<
String?> ? trackedBy, - Wrapped<
String?> ? repairDescription, - Wrapped<
double?> ? quantity, - Wrapped<
double?> ? rate, - Wrapped<
double?> ? extended, - Wrapped<
String?> ? repairInventoryId, - Wrapped<
String?> ? warehouseId, - Wrapped<
String?> ? warehouseCode, - Wrapped<
String?> ? warehouse, - Wrapped<
String?> ? repairCostId, - Wrapped<
String?> ? repairPartId, - Wrapped<
String?> ? itemOrder, - Wrapped<
String?> ? notes, - Wrapped<
String?> ? recType, - Wrapped<
String?> ? recTypeDisplay, - Wrapped<
String?> ? consignorId, - Wrapped<
String?> ? consignorAgreementId, - Wrapped<
String?> ? inventoryId, - Wrapped<
String?> ? iCode, - Wrapped<
String?> ? description, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesHomeControlsServiceOrderItemServiceOrderItem copyWithWrapped(
{Wrapped<String?>? serviceOrderItemId,
Wrapped<String?>? repairId,
Wrapped<String?>? repairNumber,
Wrapped<String?>? barCode,
Wrapped<String?>? serialNumber,
Wrapped<String?>? repairICode,
Wrapped<String?>? trackedBy,
Wrapped<String?>? repairDescription,
Wrapped<double?>? quantity,
Wrapped<double?>? rate,
Wrapped<double?>? extended,
Wrapped<String?>? repairInventoryId,
Wrapped<String?>? warehouseId,
Wrapped<String?>? warehouseCode,
Wrapped<String?>? warehouse,
Wrapped<String?>? repairCostId,
Wrapped<String?>? repairPartId,
Wrapped<String?>? itemOrder,
Wrapped<String?>? notes,
Wrapped<String?>? recType,
Wrapped<String?>? recTypeDisplay,
Wrapped<String?>? consignorId,
Wrapped<String?>? consignorAgreementId,
Wrapped<String?>? inventoryId,
Wrapped<String?>? iCode,
Wrapped<String?>? description,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesHomeControlsServiceOrderItemServiceOrderItem(
serviceOrderItemId: (serviceOrderItemId != null
? serviceOrderItemId.value
: this.serviceOrderItemId),
repairId: (repairId != null ? repairId.value : this.repairId),
repairNumber:
(repairNumber != null ? repairNumber.value : this.repairNumber),
barCode: (barCode != null ? barCode.value : this.barCode),
serialNumber:
(serialNumber != null ? serialNumber.value : this.serialNumber),
repairICode:
(repairICode != null ? repairICode.value : this.repairICode),
trackedBy: (trackedBy != null ? trackedBy.value : this.trackedBy),
repairDescription: (repairDescription != null
? repairDescription.value
: this.repairDescription),
quantity: (quantity != null ? quantity.value : this.quantity),
rate: (rate != null ? rate.value : this.rate),
extended: (extended != null ? extended.value : this.extended),
repairInventoryId: (repairInventoryId != null
? repairInventoryId.value
: this.repairInventoryId),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
warehouseCode:
(warehouseCode != null ? warehouseCode.value : this.warehouseCode),
warehouse: (warehouse != null ? warehouse.value : this.warehouse),
repairCostId:
(repairCostId != null ? repairCostId.value : this.repairCostId),
repairPartId:
(repairPartId != null ? repairPartId.value : this.repairPartId),
itemOrder: (itemOrder != null ? itemOrder.value : this.itemOrder),
notes: (notes != null ? notes.value : this.notes),
recType: (recType != null ? recType.value : this.recType),
recTypeDisplay: (recTypeDisplay != null
? recTypeDisplay.value
: this.recTypeDisplay),
consignorId:
(consignorId != null ? consignorId.value : this.consignorId),
consignorAgreementId: (consignorAgreementId != null
? consignorAgreementId.value
: this.consignorAgreementId),
inventoryId:
(inventoryId != null ? inventoryId.value : this.inventoryId),
iCode: (iCode != null ? iCode.value : this.iCode),
description:
(description != null ? description.value : this.description),
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));
}