copyWithWrapped method
Implementation
WebApiModulesUtilitiesReceiptProcessBatchReceiptProcessBatchRequest
copyWithWrapped(
{Wrapped<String?>? officeLocationId,
Wrapped<DateTime?>? fromDate,
Wrapped<DateTime?>? toDate}) {
return WebApiModulesUtilitiesReceiptProcessBatchReceiptProcessBatchRequest(
officeLocationId: (officeLocationId != null
? officeLocationId.value
: this.officeLocationId),
fromDate: (fromDate != null ? fromDate.value : this.fromDate),
toDate: (toDate != null ? toDate.value : this.toDate));
}