Show / Hide Table of Contents

Class QueryInterpretationOptions

Options to interpret user query.

Inheritance
System.Object
QueryInterpretationOptions
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 QueryInterpretationOptions : IDirectResponseSchema

Properties

DisableNlInterpretation

Flag to disable natural language (NL) interpretation of queries. Default is false, Set to true to disable natural language interpretation. NL interpretation only applies to predefined datasources.

Declaration
[JsonProperty("disableNlInterpretation")]
public virtual bool? DisableNlInterpretation { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

EnableVerbatimMode

Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental result retrieval, and usage of synonyms including custom ones. Nl interpretation will be disabled if either one of the two flags is true.

Declaration
[JsonProperty("enableVerbatimMode")]
public virtual bool? EnableVerbatimMode { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
Back to top