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

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

There is a newer version: 4.0.2
Show newest version
package io.github.factoryfx.dom.rest;

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 - 2024 Weber Informatics LLC | Privacy Policy