Class Completion
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.
Inheritance
System.Object
Completion
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models.API.MatchV2.Response
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class Completion
Properties
| Improve this Doc View SourceField
The field name.
Declaration
public string Field { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FieldLabel
The display label of the field.
Declaration
public string FieldLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Item
The completion suggestion.
Declaration
public string Item { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ItemHighlighted
Same as the item, but with highlighting tags showing the matching parts of the suggestion.
Declaration
public string ItemHighlighted { get; set; }
Property Value
Type | Description |
---|---|
System.String |