copyWithWrapped method
WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest
copyWithWrapped({
- Wrapped<
String?> ? batchId, - Wrapped<
String?> ? fromBatchNumber, - Wrapped<
String?> ? toBatchNumber, - Wrapped<
DateTime?> ? batchFromDate, - Wrapped<
DateTime?> ? batchToDate, - Wrapped<
String?> ? batchRange, - Wrapped<
String?> ? locationId, - Wrapped<
String?> ? userDepartmentId, - Wrapped<
String?> ? userLocationId, - Wrapped<
String?> ? userWarehouseId, - Wrapped<
String?> ? customReportLayoutId, - Wrapped<
bool?> ? isSummary, - Wrapped<
bool?> ? includeSubHeadingsAndSubTotals, - Wrapped<
bool?> ? includeIdColumns, - Wrapped<
String?> ? locale, - Wrapped<
List< ? excelfields,FwStandardModelsCheckBoxListItem> ?> - Wrapped<
String?> ? reportName, - Wrapped<
bool?> ? useEmailTemplate,
Implementation
WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest
copyWithWrapped({
Wrapped<String?>? batchId,
Wrapped<String?>? fromBatchNumber,
Wrapped<String?>? toBatchNumber,
Wrapped<DateTime?>? batchFromDate,
Wrapped<DateTime?>? batchToDate,
Wrapped<String?>? batchRange,
Wrapped<String?>? locationId,
Wrapped<String?>? userDepartmentId,
Wrapped<String?>? userLocationId,
Wrapped<String?>? userWarehouseId,
Wrapped<String?>? customReportLayoutId,
Wrapped<bool?>? isSummary,
Wrapped<bool?>? includeSubHeadingsAndSubTotals,
Wrapped<bool?>? includeIdColumns,
Wrapped<String?>? locale,
Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields,
Wrapped<String?>? reportName,
Wrapped<bool?>? useEmailTemplate,
}) {
return WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest(
batchId: (batchId != null ? batchId.value : this.batchId),
fromBatchNumber: (fromBatchNumber != null
? fromBatchNumber.value
: this.fromBatchNumber),
toBatchNumber: (toBatchNumber != null
? toBatchNumber.value
: this.toBatchNumber),
batchFromDate: (batchFromDate != null
? batchFromDate.value
: this.batchFromDate),
batchToDate: (batchToDate != null ? batchToDate.value : this.batchToDate),
batchRange: (batchRange != null ? batchRange.value : this.batchRange),
locationId: (locationId != null ? locationId.value : this.locationId),
userDepartmentId: (userDepartmentId != null
? userDepartmentId.value
: this.userDepartmentId),
userLocationId: (userLocationId != null
? userLocationId.value
: this.userLocationId),
userWarehouseId: (userWarehouseId != null
? userWarehouseId.value
: this.userWarehouseId),
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),
reportName: (reportName != null ? reportName.value : this.reportName),
useEmailTemplate: (useEmailTemplate != null
? useEmailTemplate.value
: this.useEmailTemplate),
);
}