ListItem
[ Schnittstelle ]
export interface ListItem {
id?: number | null;
text: string | number | boolean | null;
value?: any | null;
category?: string | null;
}
Eigenschaften
Name | Typ | Beschreibung |
---|---|---|
id [optional] | Id des Eintrags | |
text | Anzeigetext des Eintrags | |
value [optional] | Wert des Eintrags | |
category[optional] | Kategorie des Eintrags (ab Version 1.12.744) |
Verfügbar ab Version 1.8 |