copyWithWrapped method
WebApiModulesSettingsTemplateSettingsTemplateTemplate
copyWithWrapped({
- Wrapped<
String?> ? templateId, - Wrapped<
String?> ? description, - Wrapped<
String?> ? departmentId, - Wrapped<
String?> ? department, - Wrapped<
String?> ? officeLocationId, - Wrapped<
String?> ? officeLocation, - Wrapped<
String?> ? warehouseId, - Wrapped<
String?> ? warehouse, - Wrapped<
String?> ? warehouseCode, - Wrapped<
String?> ? rateType, - Wrapped<
bool?> ? rental, - Wrapped<
bool?> ? sales, - Wrapped<
bool?> ? miscellaneous, - Wrapped<
bool?> ? labor, - Wrapped<
bool?> ? facilities, - Wrapped<
bool?> ? transportation, - Wrapped<
int?> ? lines, - Wrapped<
bool?> ? hasRentalItem, - Wrapped<
bool?> ? hasSalesItem, - Wrapped<
bool?> ? hasMiscellaneousItem, - Wrapped<
bool?> ? hasLaborItem, - Wrapped<
bool?> ? hasFacilitiesItem, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?>
Implementation
WebApiModulesSettingsTemplateSettingsTemplateTemplate copyWithWrapped(
{Wrapped<String?>? templateId,
Wrapped<String?>? description,
Wrapped<String?>? departmentId,
Wrapped<String?>? department,
Wrapped<String?>? officeLocationId,
Wrapped<String?>? officeLocation,
Wrapped<String?>? warehouseId,
Wrapped<String?>? warehouse,
Wrapped<String?>? warehouseCode,
Wrapped<String?>? rateType,
Wrapped<bool?>? rental,
Wrapped<bool?>? sales,
Wrapped<bool?>? miscellaneous,
Wrapped<bool?>? labor,
Wrapped<bool?>? facilities,
Wrapped<bool?>? transportation,
Wrapped<int?>? lines,
Wrapped<bool?>? hasRentalItem,
Wrapped<bool?>? hasSalesItem,
Wrapped<bool?>? hasMiscellaneousItem,
Wrapped<bool?>? hasLaborItem,
Wrapped<bool?>? hasFacilitiesItem,
Wrapped<String?>? dateStamp,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>?
defaultFieldAttributes}) {
return WebApiModulesSettingsTemplateSettingsTemplateTemplate(
templateId: (templateId != null ? templateId.value : this.templateId),
description:
(description != null ? description.value : this.description),
departmentId:
(departmentId != null ? departmentId.value : this.departmentId),
department: (department != null ? department.value : this.department),
officeLocationId: (officeLocationId != null
? officeLocationId.value
: this.officeLocationId),
officeLocation: (officeLocation != null
? officeLocation.value
: this.officeLocation),
warehouseId:
(warehouseId != null ? warehouseId.value : this.warehouseId),
warehouse: (warehouse != null ? warehouse.value : this.warehouse),
warehouseCode:
(warehouseCode != null ? warehouseCode.value : this.warehouseCode),
rateType: (rateType != null ? rateType.value : this.rateType),
rental: (rental != null ? rental.value : this.rental),
sales: (sales != null ? sales.value : this.sales),
miscellaneous:
(miscellaneous != null ? miscellaneous.value : this.miscellaneous),
labor: (labor != null ? labor.value : this.labor),
facilities: (facilities != null ? facilities.value : this.facilities),
transportation: (transportation != null
? transportation.value
: this.transportation),
lines: (lines != null ? lines.value : this.lines),
hasRentalItem:
(hasRentalItem != null ? hasRentalItem.value : this.hasRentalItem),
hasSalesItem:
(hasSalesItem != null ? hasSalesItem.value : this.hasSalesItem),
hasMiscellaneousItem: (hasMiscellaneousItem != null
? hasMiscellaneousItem.value
: this.hasMiscellaneousItem),
hasLaborItem:
(hasLaborItem != null ? hasLaborItem.value : this.hasLaborItem),
hasFacilitiesItem: (hasFacilitiesItem != null
? hasFacilitiesItem.value
: this.hasFacilitiesItem),
dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
auditNote: (auditNote != null ? auditNote.value : this.auditNote),
recordTitle:
(recordTitle != null ? recordTitle.value : this.recordTitle),
fields: (fields != null ? fields.value : this.fields),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes));
}