copyWithWrapped method
Implementation
WebApiModulesWarehouseCheckOutIsValidStorageContainerResponse copyWithWrapped(
{Wrapped<String?>? barcode,
Wrapped<String?>? warehouseId,
Wrapped<int?>? storageContainerItemId,
Wrapped<int?>? status,
Wrapped<String?>? message,
Wrapped<String?>? description,
Wrapped<String?>? pickupLocationDescription,
Wrapped<String?>? pickupLocationId}) {
return WebApiModulesWarehouseCheckOutIsValidStorageContainerResponse(
barcode: (barcode != null ? barcode.value : this.barcode),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
storageContainerItemId: (storageContainerItemId != null
? storageContainerItemId.value
: this.storageContainerItemId),
status: (status != null ? status.value : this.status),
message: (message != null ? message.value : this.message),
description:
(description != null ? description.value : this.description),
pickupLocationDescription: (pickupLocationDescription != null
? pickupLocationDescription.value
: this.pickupLocationDescription),
pickupLocationId: (pickupLocationId != null
? pickupLocationId.value
: this.pickupLocationId));
}