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