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

io.github.factoryfx.dom.rest.DynamicDataDictionaryAttributeItem Maven / Gradle / Ivy

package io.github.factoryfx.dom.rest;

import java.util.HashMap;
import java.util.List;

public class DynamicDataDictionaryAttributeItem {
    public final String type;
    public final boolean nullable;
    public final String en;
    public final String de;
    public final List possibleEnumValues;

    public DynamicDataDictionaryAttributeItem(String type, boolean nullable, String en, String de, List possibleEnumValues) {
        this.type = type;
        this.nullable = nullable;
        this.en = en;
        this.de = de;
        this.possibleEnumValues = possibleEnumValues;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy