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]

number, null

Id des Eintrags

text

string, number, boolean, null

Anzeigetext des Eintrags

value [optional]

any, null

Wert des Eintrags

category[optional]

string, null

Kategorie des Eintrags (ab Version 1.12.744)

ListItem 1:

Verfügbar ab Version 1.8