copyWithWrapped method
WebApiModulesSettingsSourceSettingsSourceSource
copyWithWrapped({
- Wrapped<
String?> ? sourceId, - Wrapped<
String?> ? source, - Wrapped<
String?> ? sourceType, - Wrapped<
String?> ? description, - Wrapped<
String?> ? path, - Wrapped<
String?> ? fileName, - Wrapped<
String?> ? ftpHost, - Wrapped<
int?> ? ftpPort, - Wrapped<
String?> ? ftpUserName, - Wrapped<
String?> ? ftpPassword, - Wrapped<
String?> ? ftpPath, - Wrapped<
String?> ? ftpFileName, - Wrapped<
bool?> ? ftpArchive, - Wrapped<
String?> ? ftpArchivePath, - Wrapped<
bool?> ? ftpSsl, - Wrapped<
String?> ? temporaryFtpFileName, - Wrapped<
bool?> ? inactive, - Wrapped<
bool?> ? systemSource, - Wrapped<
String?> ? temporarySoapPath, - Wrapped<
String?> ? webServiceUserName, - Wrapped<
String?> ? webServicePassword, - Wrapped<
bool?> ? useProxy, - Wrapped<
String?> ? proxy, - Wrapped<
int?> ? proxyPort, - Wrapped<
String?> ? proxyUserName, - Wrapped<
String?> ? proxyPassword, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesSettingsSourceSettingsSourceSource copyWithWrapped(
{Wrapped<String?>? sourceId,
Wrapped<String?>? source,
Wrapped<String?>? sourceType,
Wrapped<String?>? description,
Wrapped<String?>? path,
Wrapped<String?>? fileName,
Wrapped<String?>? ftpHost,
Wrapped<int?>? ftpPort,
Wrapped<String?>? ftpUserName,
Wrapped<String?>? ftpPassword,
Wrapped<String?>? ftpPath,
Wrapped<String?>? ftpFileName,
Wrapped<bool?>? ftpArchive,
Wrapped<String?>? ftpArchivePath,
Wrapped<bool?>? ftpSsl,
Wrapped<String?>? temporaryFtpFileName,
Wrapped<bool?>? inactive,
Wrapped<bool?>? systemSource,
Wrapped<String?>? temporarySoapPath,
Wrapped<String?>? webServiceUserName,
Wrapped<String?>? webServicePassword,
Wrapped<bool?>? useProxy,
Wrapped<String?>? proxy,
Wrapped<int?>? proxyPort,
Wrapped<String?>? proxyUserName,
Wrapped<String?>? proxyPassword,
Wrapped<String?>? dateStamp,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesSettingsSourceSettingsSourceSource(
sourceId: (sourceId != null ? sourceId.value : this.sourceId),
source: (source != null ? source.value : this.source),
sourceType: (sourceType != null ? sourceType.value : this.sourceType),
description:
(description != null ? description.value : this.description),
path: (path != null ? path.value : this.path),
fileName: (fileName != null ? fileName.value : this.fileName),
ftpHost: (ftpHost != null ? ftpHost.value : this.ftpHost),
ftpPort: (ftpPort != null ? ftpPort.value : this.ftpPort),
ftpUserName:
(ftpUserName != null ? ftpUserName.value : this.ftpUserName),
ftpPassword:
(ftpPassword != null ? ftpPassword.value : this.ftpPassword),
ftpPath: (ftpPath != null ? ftpPath.value : this.ftpPath),
ftpFileName:
(ftpFileName != null ? ftpFileName.value : this.ftpFileName),
ftpArchive: (ftpArchive != null ? ftpArchive.value : this.ftpArchive),
ftpArchivePath: (ftpArchivePath != null
? ftpArchivePath.value
: this.ftpArchivePath),
ftpSsl: (ftpSsl != null ? ftpSsl.value : this.ftpSsl),
temporaryFtpFileName: (temporaryFtpFileName != null
? temporaryFtpFileName.value
: this.temporaryFtpFileName),
inactive: (inactive != null ? inactive.value : this.inactive),
systemSource:
(systemSource != null ? systemSource.value : this.systemSource),
temporarySoapPath: (temporarySoapPath != null
? temporarySoapPath.value
: this.temporarySoapPath),
webServiceUserName: (webServiceUserName != null
? webServiceUserName.value
: this.webServiceUserName),
webServicePassword: (webServicePassword != null
? webServicePassword.value
: this.webServicePassword),
useProxy: (useProxy != null ? useProxy.value : this.useProxy),
proxy: (proxy != null ? proxy.value : this.proxy),
proxyPort: (proxyPort != null ? proxyPort.value : this.proxyPort),
proxyUserName:
(proxyUserName != null ? proxyUserName.value : this.proxyUserName),
proxyPassword:
(proxyPassword != null ? proxyPassword.value : this.proxyPassword),
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),
translation:
(translation != null ? translation.value : this.translation));
}