sdmxdl.Codelist Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-api Show documentation
Show all versions of sdmx-dl-api Show documentation
Easily download official statistics - API
The newest version!
package sdmxdl;
import java.util.Map;
@lombok.Value
@lombok.Builder(toBuilder = true)
@lombok.EqualsAndHashCode(callSuper = false)
public class Codelist extends Resource {
@lombok.NonNull
CodelistRef ref;
/**
* Non-null map of code description by code id that represents a codelist
* (predefined sets of terms from which some statistical coded concepts take
* their values).
*/
@lombok.NonNull
@lombok.Singular
Map codes;
}