A field auto-complete suggestion.

interface AutoCompleteSuggestion {
    displayName?: string;
    value?: string;
}

Properties

Properties

displayName?: string

The display name of a suggested item. If fieldValue or predicateValue are provided, the matching text is highlighted with the HTML bold tag.

value?: string

The value of a suggested item.