from static method
Implementation
static MedTechApiBuilder from(MedTechApi previousApi) {
return newBuilder()
.withICureBasePath(previousApi.iCureBasePath)
.withUserName(previousApi.userName)
.withPassword(previousApi.password)
.withAuthServerUrl(previousApi.authServerUrl)
.withAuthProcessId(previousApi.authProcessId);
}