copyWithWrapped method
Implementation
WebApiModulesWarehouseCheckInReconcileOneOrderPerContractRequest
copyWithWrapped(
{Wrapped<String?>? contractId,
Wrapped<String?>? oneOrderPerContract}) {
return WebApiModulesWarehouseCheckInReconcileOneOrderPerContractRequest(
contractId: (contractId != null ? contractId.value : this.contractId),
oneOrderPerContract: (oneOrderPerContract != null
? oneOrderPerContract.value
: this.oneOrderPerContract));
}