copyWithWrapped method
WebApiModulesInventoryAssetCertificationAssetCertification
copyWithWrapped({
- Wrapped<
int?> ? assetCertificationId, - Wrapped<
String?> ? inventoryCertificationId, - Wrapped<
String?> ? inventoryCertification, - Wrapped<
String?> ? rentalItemId, - Wrapped<
String?> ? certificationDate, - Wrapped<
String?> ? expirationDate, - Wrapped<
String?> ? usersId, - Wrapped<
String?> ? userName, - Wrapped<
String?> ? json, - Wrapped<
String?> ? html, - Wrapped<
String?> ? barCode, - Wrapped<
String?> ? serialNumber, - Wrapped<
String?> ? rfId, - Wrapped<
String?> ? inventoryId, - Wrapped<
String?> ? iCode, - Wrapped<
String?> ? description, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesInventoryAssetCertificationAssetCertification copyWithWrapped(
{Wrapped<int?>? assetCertificationId,
Wrapped<String?>? inventoryCertificationId,
Wrapped<String?>? inventoryCertification,
Wrapped<String?>? rentalItemId,
Wrapped<String?>? certificationDate,
Wrapped<String?>? expirationDate,
Wrapped<String?>? usersId,
Wrapped<String?>? userName,
Wrapped<String?>? json,
Wrapped<String?>? html,
Wrapped<String?>? barCode,
Wrapped<String?>? serialNumber,
Wrapped<String?>? rfId,
Wrapped<String?>? inventoryId,
Wrapped<String?>? iCode,
Wrapped<String?>? description,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesInventoryAssetCertificationAssetCertification(
assetCertificationId: (assetCertificationId != null
? assetCertificationId.value
: this.assetCertificationId),
inventoryCertificationId: (inventoryCertificationId != null
? inventoryCertificationId.value
: this.inventoryCertificationId),
inventoryCertification: (inventoryCertification != null
? inventoryCertification.value
: this.inventoryCertification),
rentalItemId:
(rentalItemId != null ? rentalItemId.value : this.rentalItemId),
certificationDate: (certificationDate != null
? certificationDate.value
: this.certificationDate),
expirationDate: (expirationDate != null
? expirationDate.value
: this.expirationDate),
usersId: (usersId != null ? usersId.value : this.usersId),
userName: (userName != null ? userName.value : this.userName),
json: (json != null ? json.value : this.json),
html: (html != null ? html.value : this.html),
barCode: (barCode != null ? barCode.value : this.barCode),
serialNumber:
(serialNumber != null ? serialNumber.value : this.serialNumber),
rfId: (rfId != null ? rfId.value : this.rfId),
inventoryId:
(inventoryId != null ? inventoryId.value : this.inventoryId),
iCode: (iCode != null ? iCode.value : this.iCode),
description:
(description != null ? description.value : this.description),
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),
translation:
(translation != null ? translation.value : this.translation));
}