copyWithWrapped method
Implementation
WebApiModulesAgentPurchaseOrderRejectPurchaseOrderResponse copyWithWrapped(
{Wrapped<int?>? status,
Wrapped<bool?>? success,
Wrapped<String?>? msg,
Wrapped<WebApiModulesAgentPurchaseOrderPurchaseOrder?>? po}) {
return WebApiModulesAgentPurchaseOrderRejectPurchaseOrderResponse(
status: (status != null ? status.value : this.status),
success: (success != null ? success.value : this.success),
msg: (msg != null ? msg.value : this.msg),
po: (po != null ? po.value : this.po));
}