copyWithWrapped method
Implementation
WebApiModulesUtilitiesInvoiceProcessBatchInvoiceProcessBatchRequest
copyWithWrapped(
{Wrapped<String?>? locationId, Wrapped<DateTime?>? asOfDate}) {
return WebApiModulesUtilitiesInvoiceProcessBatchInvoiceProcessBatchRequest(
locationId: (locationId != null ? locationId.value : this.locationId),
asOfDate: (asOfDate != null ? asOfDate.value : this.asOfDate));
}