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
object
SchemaFieldSpec.NumericIndexingSpecData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class SchemaFieldSpec.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
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
double?
In this article
Back to top Generated by DocFX