org.hisp.dhis.model.datavalueset.DataValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dhis2-java-client Show documentation
Show all versions of dhis2-java-client Show documentation
DHIS 2 API client for Java.
package org.hisp.dhis.model.datavalueset;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;
import com.fasterxml.jackson.annotation.JsonProperty;
@Getter
@Setter
@ToString
@Accessors( chain = true )
public class DataValue
{
@JsonProperty
private String dataElement;
@JsonProperty
private String period;
@JsonProperty
private String orgUnit;
@JsonProperty
private String categoryOptionCombo;
@JsonProperty
private String attributeOptionCombo;
@JsonProperty
private String value;
@JsonProperty
private String storedBy;
@JsonProperty
private String created;
@JsonProperty
private String lastUpdated;
@JsonProperty
private String comment;
@JsonProperty
private Boolean followup;
@JsonProperty
private Boolean deleted;
public DataValue()
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy