copyWithWrapped method
WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest
copyWithWrapped({
- Wrapped<
String?> ? batchId, - Wrapped<
String?> ? batchNumber, - Wrapped<
DateTime?> ? batchDate, - Wrapped<
String?> ? customReportLayoutId, - Wrapped<
bool?> ? isSummary, - Wrapped<
bool?> ? includeSubHeadingsAndSubTotals, - Wrapped<
bool?> ? includeIdColumns, - Wrapped<
String?> ? locale, - Wrapped<
List< ? excelfields,FwStandardModelsCheckBoxListItem> ?>
Implementation
WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest
copyWithWrapped(
{Wrapped<String?>? batchId,
Wrapped<String?>? batchNumber,
Wrapped<DateTime?>? batchDate,
Wrapped<String?>? customReportLayoutId,
Wrapped<bool?>? isSummary,
Wrapped<bool?>? includeSubHeadingsAndSubTotals,
Wrapped<bool?>? includeIdColumns,
Wrapped<String?>? locale,
Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields}) {
return WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest(
batchId: (batchId != null ? batchId.value : this.batchId),
batchNumber:
(batchNumber != null ? batchNumber.value : this.batchNumber),
batchDate: (batchDate != null ? batchDate.value : this.batchDate),
customReportLayoutId: (customReportLayoutId != null
? customReportLayoutId.value
: this.customReportLayoutId),
isSummary: (isSummary != null ? isSummary.value : this.isSummary),
includeSubHeadingsAndSubTotals: (includeSubHeadingsAndSubTotals != null
? includeSubHeadingsAndSubTotals.value
: this.includeSubHeadingsAndSubTotals),
includeIdColumns: (includeIdColumns != null
? includeIdColumns.value
: this.includeIdColumns),
locale: (locale != null ? locale.value : this.locale),
excelfields:
(excelfields != null ? excelfields.value : this.excelfields));
}