Data QnA v1alpha API - Class SuggestionInfo.Types.MatchInfo (2.0.0-alpha02)

public sealed class SuggestionInfo.Types.MatchInfo : IMessage<SuggestionInfo.Types.MatchInfo>, IEquatable<SuggestionInfo.Types.MatchInfo>, IDeepCloneable<SuggestionInfo.Types.MatchInfo>, IBufferMessage, IMessage

Reference documentation and code samples for the Data QnA v1alpha API class SuggestionInfo.Types.MatchInfo.

MatchInfo describes which part of suggestion matched with data in user typed query. This can be used to highlight matching parts in the UI. This is different from the annotations provided in annotated_suggestion. The annotated_suggestion provides information about the semantic meaning, while this provides information about how it relates to the input.

Example: user query: top products

annotated_suggestion {
 text_formatted = "top product_group"
 html_formatted = "top <b>product_group</b>"
 markups {
  {type: TEXT, start_char_index: 0, length: 3}
  {type: DIMENSION, start_char_index: 4, length: 13}
 }
}

query_matches {
 { start_char_index: 0, length: 3 }
 { start_char_index: 4, length: 7}
}

Inheritance

object > SuggestionInfo.Types.MatchInfo

Namespace

Google.Cloud.DataQnA.V1Alpha

Assembly

Google.Cloud.DataQnA.V1Alpha.dll

Constructors

MatchInfo()

public MatchInfo()

MatchInfo(MatchInfo)

public MatchInfo(SuggestionInfo.Types.MatchInfo other)
Parameter
NameDescription
otherSuggestionInfoTypesMatchInfo

Properties

Length

public int Length { get; set; }

Count of unicode characters of this substring.

Property Value
TypeDescription
int

StartCharIndex

public int StartCharIndex { get; set; }

Unicode character index of the string annotation.

Property Value
TypeDescription
int