Class QueryInterpretation
Inheritance
QueryInterpretation
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class QueryInterpretation : IDirectResponseSchema
Properties
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
InterpretationType
Declaration
[JsonProperty("interpretationType")]
public virtual string InterpretationType { get; set; }
Property Value
InterpretedQuery
The interpretation of the query used in search. For example, queries with natural language intent like
"email from john" will be interpreted as "from:john source:mail". This field will not be filled when the
reason is NOT_ENOUGH_RESULTS_FOUND_FOR_USER_QUERY.
Declaration
[JsonProperty("interpretedQuery")]
public virtual string InterpretedQuery { get; set; }
Property Value
Reason
The reason for interpretation of the query. This field will not be UNSPECIFIED if the interpretation type is
not NONE.
Declaration
[JsonProperty("reason")]
public virtual string Reason { get; set; }
Property Value
Implements