copyWithWrapped method
Implementation
WebApiModulesInventoryContainerItemRemoveFromContainerRequest
copyWithWrapped({
Wrapped<String?>? containerItemId,
Wrapped<String?>? itemId,
Wrapped<String?>? inventoryId,
Wrapped<String?>? warehouseId,
Wrapped<String?>? consignorId,
Wrapped<String?>? consignorAgreementId,
Wrapped<double?>? quantity,
}) {
return WebApiModulesInventoryContainerItemRemoveFromContainerRequest(
containerItemId: (containerItemId != null
? containerItemId.value
: this.containerItemId),
itemId: (itemId != null ? itemId.value : this.itemId),
inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
consignorId: (consignorId != null ? consignorId.value : this.consignorId),
consignorAgreementId: (consignorAgreementId != null
? consignorAgreementId.value
: this.consignorAgreementId),
quantity: (quantity != null ? quantity.value : this.quantity),
);
}