copyWith method
WebApiModulesReportsBillingBillingProgressReportBillingProgressReportRequest
copyWith({
- DateTime? asOfDate,
- List<
FwStandardModelsSelectedCheckBoxListItem> ? statuses, - bool? includeCredits,
- bool? excludeBilled100,
- String? officeLocationId,
- String? departmentId,
- String? customerId,
- String? dealTypeId,
- String? dealId,
- String? agentId,
- String? csrId,
- String? userDepartmentId,
- String? userLocationId,
- String? userWarehouseId,
- String? customReportLayoutId,
- bool? isSummary,
- bool? includeSubHeadingsAndSubTotals,
- bool? includeIdColumns,
- String? locale,
- List<
FwStandardModelsCheckBoxListItem> ? excelfields, - String? reportName,
- bool? useEmailTemplate,
Implementation
WebApiModulesReportsBillingBillingProgressReportBillingProgressReportRequest
copyWith({
DateTime? asOfDate,
List<FwStandardModelsSelectedCheckBoxListItem>? statuses,
bool? includeCredits,
bool? excludeBilled100,
String? officeLocationId,
String? departmentId,
String? customerId,
String? dealTypeId,
String? dealId,
String? agentId,
String? csrId,
String? userDepartmentId,
String? userLocationId,
String? userWarehouseId,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields,
String? reportName,
bool? useEmailTemplate,
}) {
return WebApiModulesReportsBillingBillingProgressReportBillingProgressReportRequest(
asOfDate: asOfDate ?? this.asOfDate,
statuses: statuses ?? this.statuses,
includeCredits: includeCredits ?? this.includeCredits,
excludeBilled100: excludeBilled100 ?? this.excludeBilled100,
officeLocationId: officeLocationId ?? this.officeLocationId,
departmentId: departmentId ?? this.departmentId,
customerId: customerId ?? this.customerId,
dealTypeId: dealTypeId ?? this.dealTypeId,
dealId: dealId ?? this.dealId,
agentId: agentId ?? this.agentId,
csrId: csrId ?? this.csrId,
userDepartmentId: userDepartmentId ?? this.userDepartmentId,
userLocationId: userLocationId ?? this.userLocationId,
userWarehouseId: userWarehouseId ?? this.userWarehouseId,
customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
isSummary: isSummary ?? this.isSummary,
includeSubHeadingsAndSubTotals:
includeSubHeadingsAndSubTotals ?? this.includeSubHeadingsAndSubTotals,
includeIdColumns: includeIdColumns ?? this.includeIdColumns,
locale: locale ?? this.locale,
excelfields: excelfields ?? this.excelfields,
reportName: reportName ?? this.reportName,
useEmailTemplate: useEmailTemplate ?? this.useEmailTemplate,
);
}