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?> ? customReportLayoutId, - Wrapped<
bool?> ? isSummary, - Wrapped<
bool?> ? includeSubHeadingsAndSubTotals, - Wrapped<
bool?> ? includeIdColumns, - Wrapped<
String?> ? locale, - Wrapped<
List< ? excelfields,FwStandardModelsCheckBoxListItem> ?>
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?>? customReportLayoutId,
Wrapped<bool?>? isSummary,
Wrapped<bool?>? includeSubHeadingsAndSubTotals,
Wrapped<bool?>? includeIdColumns,
Wrapped<String?>? locale,
Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields}) {
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),
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));
}