copyWithWrapped method
Implementation
WebApiModulesInventoryRentalInventoryAddRemoveWallRequest copyWithWrapped(
{Wrapped<String?>? setId,
Wrapped<String?>? code,
Wrapped<String?>? action,
Wrapped<int?>? quantity}) {
return WebApiModulesInventoryRentalInventoryAddRemoveWallRequest(
setId: (setId != null ? setId.value : this.setId),
code: (code != null ? code.value : this.code),
action: (action != null ? action.value : this.action),
quantity: (quantity != null ? quantity.value : this.quantity));
}