io.github.factoryfx.dom.rest.DynamicDataDictionaryAttributeItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domFactoryEditing Show documentation
Show all versions of domFactoryEditing Show documentation
factoryfx dependency injection framework
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;
}
}