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