Table of Contents

Class Completion

Namespace
Textkernel.Tx.Models.API.MatchV2.Response
Assembly
Textkernel.Tx.SDK.dll

This object describes a single auto-completion result. The auto-completion service returns a list of these completions. Besides the actual suggested completion item, it contains the field name and field label of search field this suggestion should be targeted to.

public class Completion
Inheritance
Completion
Inherited Members

Properties

Field

The field name.

public string Field { get; set; }

Property Value

string

FieldLabel

The display label of the field.

public string FieldLabel { get; set; }

Property Value

string

Item

The completion suggestion.

public string Item { get; set; }

Property Value

string

ItemHighlighted

Same as the item, but with highlighting tags showing the matching parts of the suggestion.

public string ItemHighlighted { get; set; }

Property Value

string