org.hisp.dhis.model.AttributeValue 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;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
public class AttributeValue
{
@JsonProperty
private Attribute attribute;
@JsonProperty
private String value;
public AttributeValue( Attribute attribute, String value )
{
this.attribute = attribute;
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy