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