Show / Hide Table of Contents

Class SchemaFieldSpec.NumericIndexingSpecData

Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric fields. Setting the numericIndexingSpec allows range queries to be supported.

Inheritance
System.Object
SchemaFieldSpec.NumericIndexingSpecData
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.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class NumericIndexingSpecData

Properties

MaxValue

Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.

Declaration
[JsonProperty("maxValue")]
public virtual double? MaxValue { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

MinValue

Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.

Declaration
[JsonProperty("minValue")]
public virtual double? MinValue { get; set; }
Property Value
Type Description
System.Nullable<System.Double>
Back to top