copyWithWrapped method
WebApiModulesAgentQuoteQuoteDocument
copyWithWrapped({
- Wrapped<
String?> ? quoteId, - Wrapped<
bool?> ? copying, - Wrapped<
String?> ? documentId, - Wrapped<
String?> ? documentTypeId, - Wrapped<
String?> ? uniqueId1, - Wrapped<
String?> ? uniqueId2, - Wrapped<
int?> ? uniqueId1Int, - Wrapped<
String?> ? description, - Wrapped<
String?> ? inputByUsersId, - Wrapped<
String?> ? attachDate, - Wrapped<
String?> ? attachTime, - Wrapped<
bool?> ? attachToEmail, - Wrapped<
bool?> ? inactive, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? extension, - Wrapped<
String?> ? documentType, - Wrapped<
String?> ? inputBy, - Wrapped<
bool?> ? hasImage, - Wrapped<
bool?> ? hasFile, - Wrapped<
int?> ? appImageCount, - Wrapped<
bool?> ? fileIsModified, - Wrapped<
String?> ? fileDataUrl, - Wrapped<
String?> ? filePath, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesAgentQuoteQuoteDocument copyWithWrapped(
{Wrapped<String?>? quoteId,
Wrapped<bool?>? copying,
Wrapped<String?>? documentId,
Wrapped<String?>? documentTypeId,
Wrapped<String?>? uniqueId1,
Wrapped<String?>? uniqueId2,
Wrapped<int?>? uniqueId1Int,
Wrapped<String?>? description,
Wrapped<String?>? inputByUsersId,
Wrapped<String?>? attachDate,
Wrapped<String?>? attachTime,
Wrapped<bool?>? attachToEmail,
Wrapped<bool?>? inactive,
Wrapped<String?>? dateStamp,
Wrapped<String?>? extension,
Wrapped<String?>? documentType,
Wrapped<String?>? inputBy,
Wrapped<bool?>? hasImage,
Wrapped<bool?>? hasFile,
Wrapped<int?>? appImageCount,
Wrapped<bool?>? fileIsModified,
Wrapped<String?>? fileDataUrl,
Wrapped<String?>? filePath,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesAgentQuoteQuoteDocument(
quoteId: (quoteId != null ? quoteId.value : this.quoteId),
copying: (copying != null ? copying.value : this.copying),
documentId: (documentId != null ? documentId.value : this.documentId),
documentTypeId: (documentTypeId != null
? documentTypeId.value
: this.documentTypeId),
uniqueId1: (uniqueId1 != null ? uniqueId1.value : this.uniqueId1),
uniqueId2: (uniqueId2 != null ? uniqueId2.value : this.uniqueId2),
uniqueId1Int:
(uniqueId1Int != null ? uniqueId1Int.value : this.uniqueId1Int),
description:
(description != null ? description.value : this.description),
inputByUsersId: (inputByUsersId != null
? inputByUsersId.value
: this.inputByUsersId),
attachDate: (attachDate != null ? attachDate.value : this.attachDate),
attachTime: (attachTime != null ? attachTime.value : this.attachTime),
attachToEmail:
(attachToEmail != null ? attachToEmail.value : this.attachToEmail),
inactive: (inactive != null ? inactive.value : this.inactive),
dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
extension: (extension != null ? extension.value : this.extension),
documentType:
(documentType != null ? documentType.value : this.documentType),
inputBy: (inputBy != null ? inputBy.value : this.inputBy),
hasImage: (hasImage != null ? hasImage.value : this.hasImage),
hasFile: (hasFile != null ? hasFile.value : this.hasFile),
appImageCount:
(appImageCount != null ? appImageCount.value : this.appImageCount),
fileIsModified: (fileIsModified != null
? fileIsModified.value
: this.fileIsModified),
fileDataUrl:
(fileDataUrl != null ? fileDataUrl.value : this.fileDataUrl),
filePath: (filePath != null ? filePath.value : this.filePath),
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));
}