copyWithWrapped method
WebApiModulesReportsFixedAssetBookValueFixedAssetBookValueRequest
copyWithWrapped({
- Wrapped<
DateTime?> ? asOfDate, - Wrapped<
List< ? ranks,FwStandardModelsSelectedCheckBoxListItem> ?> - Wrapped<
List< ? trackedBys,FwStandardModelsSelectedCheckBoxListItem> ?> - Wrapped<
bool?> ? excludeFullyDepreciated, - Wrapped<
String?> ? warehouseId, - Wrapped<
String?> ? inventoryTypeId, - Wrapped<
String?> ? categoryId, - Wrapped<
String?> ? subCategoryId, - Wrapped<
String?> ? inventoryId, - 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
WebApiModulesReportsFixedAssetBookValueFixedAssetBookValueRequest
copyWithWrapped(
{Wrapped<DateTime?>? asOfDate,
Wrapped<List<FwStandardModelsSelectedCheckBoxListItem>?>? ranks,
Wrapped<List<FwStandardModelsSelectedCheckBoxListItem>?>? trackedBys,
Wrapped<bool?>? excludeFullyDepreciated,
Wrapped<String?>? warehouseId,
Wrapped<String?>? inventoryTypeId,
Wrapped<String?>? categoryId,
Wrapped<String?>? subCategoryId,
Wrapped<String?>? inventoryId,
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 WebApiModulesReportsFixedAssetBookValueFixedAssetBookValueRequest(
asOfDate: (asOfDate != null ? asOfDate.value : this.asOfDate),
ranks: (ranks != null ? ranks.value : this.ranks),
trackedBys: (trackedBys != null ? trackedBys.value : this.trackedBys),
excludeFullyDepreciated: (excludeFullyDepreciated != null
? excludeFullyDepreciated.value
: this.excludeFullyDepreciated),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
inventoryTypeId: (inventoryTypeId != null
? inventoryTypeId.value
: this.inventoryTypeId),
categoryId: (categoryId != null ? categoryId.value : this.categoryId),
subCategoryId:
(subCategoryId != null ? subCategoryId.value : this.subCategoryId),
inventoryId:
(inventoryId != null ? inventoryId.value : this.inventoryId),
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));
}