copyWithWrapped method
WebApiModulesReportsContractReportsReceiveContractReportReceiveContractReportRequest
copyWithWrapped({
- Wrapped<
String?> ? contractId, - Wrapped<
String?> ? appLanguageId, - Wrapped<
String?> ? contractType, - Wrapped<
bool?> ? includeSubVendor, - Wrapped<
bool?> ? showImages, - 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
WebApiModulesReportsContractReportsReceiveContractReportReceiveContractReportRequest
copyWithWrapped(
{Wrapped<String?>? contractId,
Wrapped<String?>? appLanguageId,
Wrapped<String?>? contractType,
Wrapped<bool?>? includeSubVendor,
Wrapped<bool?>? showImages,
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 WebApiModulesReportsContractReportsReceiveContractReportReceiveContractReportRequest(
contractId: (contractId != null ? contractId.value : this.contractId),
appLanguageId:
(appLanguageId != null ? appLanguageId.value : this.appLanguageId),
contractType:
(contractType != null ? contractType.value : this.contractType),
includeSubVendor: (includeSubVendor != null
? includeSubVendor.value
: this.includeSubVendor),
showImages: (showImages != null ? showImages.value : this.showImages),
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));
}