Show / Hide Table of Contents

Class QueryInterpretation

Inheritance
System.Object
QueryInterpretation
Implements
IDirectResponseSchema
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: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class QueryInterpretation : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

InterpretationType

Declaration
[JsonProperty("interpretationType")]
public virtual string InterpretationType { get; set; }
Property Value
Type Description
System.String

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
Type Description
System.String

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
Type Description
System.String

Implements

IDirectResponseSchema
Back to top