copyWithWrapped method
Implementation
WebApiModulesAdministratorSystemUpdateApplyUpdateRequest copyWithWrapped(
{Wrapped<String?>? sessionId,
Wrapped<String?>? currentVersion,
Wrapped<String?>? toVersion}) {
return WebApiModulesAdministratorSystemUpdateApplyUpdateRequest(
sessionId: (sessionId != null ? sessionId.value : this.sessionId),
currentVersion: (currentVersion != null
? currentVersion.value
: this.currentVersion),
toVersion: (toVersion != null ? toVersion.value : this.toVersion));
}