Class IntegerFacetingOptions
Used to specify integer faceting options.
Inheritance
System.Object
IntegerFacetingOptions
Implements
Google.Apis.Requests.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 IntegerFacetingOptions : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
IntegerBuckets
Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
Declaration
[JsonProperty("integerBuckets")]
public virtual IList<long?> IntegerBuckets { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<System.Nullable<System.Int64>> |
Implements
Google.Apis.Requests.IDirectResponseSchema