All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencds.cqf.modelinfo.ModelInfoSettings Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package org.opencds.cqf.modelinfo;

import java.util.Collection;

import org.hl7.elm_modelinfo.r1.ConversionInfo;

public class ModelInfoSettings {

    public String name;
    public String version;
    public String url;
    public String patientClassName;
    public String patientBirthDatePropertyName;
    public String targetQualifier;

    public Collection conversionInfos;

    public ModelInfoSettings(String name, String version, String url, String patientClassName,
            String patientBirthDatePropertyName, String targetQualifier) {
        this.name = name;
        this.version = version;
        this.url = url;
        this.patientClassName = patientClassName;
        this.patientBirthDatePropertyName = patientBirthDatePropertyName;
        this.targetQualifier = targetQualifier;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy