Table of Contents

Class SchemaFieldSpec.NumericIndexingSpecData

Namespace
Google.Apis.Admin.Directory.directory_v1.Data
Assembly
Google.Apis.Admin.Directory.directory_v1.dll

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.

public class SchemaFieldSpec.NumericIndexingSpecData
Inheritance
SchemaFieldSpec.NumericIndexingSpecData
Inherited Members

Constructors

NumericIndexingSpecData()

public 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.

public virtual double? MaxValue { get; set; }

Property Value

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.

public virtual double? MinValue { get; set; }

Property Value

double?