copyWithWrapped method
WebApiModulesHomeControlsInventoryConsignorInventoryConsignor
copyWithWrapped({
- Wrapped<
String?> ? consignorId, - Wrapped<
String?> ? consignorAgreementId, - Wrapped<
String?> ? consignor, - Wrapped<
String?> ? agreementNumber, - Wrapped<
String?> ? agreementDescription, - Wrapped<
String?> ? inventoryId, - Wrapped<
String?> ? iCode, - Wrapped<
String?> ? description, - Wrapped<
String?> ? trackedBy, - Wrapped<
bool?> ? treatConsignedQtyAsOwned, - Wrapped<
int?> ? qtyConsigned, - Wrapped<
int?> ? consignorPercent, - Wrapped<
int?> ? housePercent, - Wrapped<
bool?> ? flatRate, - Wrapped<
double?> ? flatRateAmount, - Wrapped<
String?> ? itemId, - Wrapped<
String?> ? barCode, - Wrapped<
String?> ? serialNumber, - Wrapped<
String?> ? inventoryStatusId, - Wrapped<
String?> ? inventoryStatus, - Wrapped<
String?> ? inventoryStatusType, - Wrapped<
String?> ? warehouseId, - Wrapped<
String?> ? warehouse, - Wrapped<
String?> ? warehouseCode, - Wrapped<
String?> ? textColor, - Wrapped<
String?> ? color, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesHomeControlsInventoryConsignorInventoryConsignor copyWithWrapped(
{Wrapped<String?>? consignorId,
Wrapped<String?>? consignorAgreementId,
Wrapped<String?>? consignor,
Wrapped<String?>? agreementNumber,
Wrapped<String?>? agreementDescription,
Wrapped<String?>? inventoryId,
Wrapped<String?>? iCode,
Wrapped<String?>? description,
Wrapped<String?>? trackedBy,
Wrapped<bool?>? treatConsignedQtyAsOwned,
Wrapped<int?>? qtyConsigned,
Wrapped<int?>? consignorPercent,
Wrapped<int?>? housePercent,
Wrapped<bool?>? flatRate,
Wrapped<double?>? flatRateAmount,
Wrapped<String?>? itemId,
Wrapped<String?>? barCode,
Wrapped<String?>? serialNumber,
Wrapped<String?>? inventoryStatusId,
Wrapped<String?>? inventoryStatus,
Wrapped<String?>? inventoryStatusType,
Wrapped<String?>? warehouseId,
Wrapped<String?>? warehouse,
Wrapped<String?>? warehouseCode,
Wrapped<String?>? textColor,
Wrapped<String?>? color,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesHomeControlsInventoryConsignorInventoryConsignor(
consignorId:
(consignorId != null ? consignorId.value : this.consignorId),
consignorAgreementId: (consignorAgreementId != null
? consignorAgreementId.value
: this.consignorAgreementId),
consignor: (consignor != null ? consignor.value : this.consignor),
agreementNumber: (agreementNumber != null
? agreementNumber.value
: this.agreementNumber),
agreementDescription: (agreementDescription != null
? agreementDescription.value
: this.agreementDescription),
inventoryId:
(inventoryId != null ? inventoryId.value : this.inventoryId),
iCode: (iCode != null ? iCode.value : this.iCode),
description:
(description != null ? description.value : this.description),
trackedBy: (trackedBy != null ? trackedBy.value : this.trackedBy),
treatConsignedQtyAsOwned: (treatConsignedQtyAsOwned != null
? treatConsignedQtyAsOwned.value
: this.treatConsignedQtyAsOwned),
qtyConsigned:
(qtyConsigned != null ? qtyConsigned.value : this.qtyConsigned),
consignorPercent: (consignorPercent != null
? consignorPercent.value
: this.consignorPercent),
housePercent:
(housePercent != null ? housePercent.value : this.housePercent),
flatRate: (flatRate != null ? flatRate.value : this.flatRate),
flatRateAmount: (flatRateAmount != null
? flatRateAmount.value
: this.flatRateAmount),
itemId: (itemId != null ? itemId.value : this.itemId),
barCode: (barCode != null ? barCode.value : this.barCode),
serialNumber:
(serialNumber != null ? serialNumber.value : this.serialNumber),
inventoryStatusId: (inventoryStatusId != null
? inventoryStatusId.value
: this.inventoryStatusId),
inventoryStatus: (inventoryStatus != null
? inventoryStatus.value
: this.inventoryStatus),
inventoryStatusType: (inventoryStatusType != null
? inventoryStatusType.value
: this.inventoryStatusType),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
warehouse: (warehouse != null ? warehouse.value : this.warehouse),
warehouseCode:
(warehouseCode != null ? warehouseCode.value : this.warehouseCode),
textColor: (textColor != null ? textColor.value : this.textColor),
color: (color != null ? color.value : this.color),
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));
}