copyWithWrapped method
WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions
copyWithWrapped({
- Wrapped<
String?> ? physicalInventoryId, - Wrapped<
String?> ? scannedCode, - Wrapped<
String?> ? iCode, - Wrapped<
String?> ? description, - Wrapped<
String?> ? exception, - Wrapped<
String?> ? inventoryId, - Wrapped<
String?> ? userName, - Wrapped<
String?> ? date, - Wrapped<
String?> ? time, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions
copyWithWrapped(
{Wrapped<String?>? physicalInventoryId,
Wrapped<String?>? scannedCode,
Wrapped<String?>? iCode,
Wrapped<String?>? description,
Wrapped<String?>? exception,
Wrapped<String?>? inventoryId,
Wrapped<String?>? userName,
Wrapped<String?>? date,
Wrapped<String?>? time,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>?
defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions(
physicalInventoryId: (physicalInventoryId != null
? physicalInventoryId.value
: this.physicalInventoryId),
scannedCode:
(scannedCode != null ? scannedCode.value : this.scannedCode),
iCode: (iCode != null ? iCode.value : this.iCode),
description:
(description != null ? description.value : this.description),
exception: (exception != null ? exception.value : this.exception),
inventoryId:
(inventoryId != null ? inventoryId.value : this.inventoryId),
userName: (userName != null ? userName.value : this.userName),
date: (date != null ? date.value : this.date),
time: (time != null ? time.value : this.time),
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));
}