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

redox.datamodel.clinicalsummary.common.ValueWrapper Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package redox.datamodel.clinicalsummary.common;

import lombok.Data;

/**
 * This is a wrapper class for Observation Value type. It can either be a Value or String
 * data type so this class provides the ability for it to be both
 */
@Data
public class ValueWrapper {
    private Value value;
    private String valueString;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy