Show / Hide Table of Contents

Class IntegerPropertyOptions

Options for integer properties.

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

Properties

ETag

The ETag of the item.

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

MaximumValue

The maximum value of the property. The minimum and maximum values for the property are used to rank results according to the ordered ranking. Indexing requests with values greater than the maximum are accepted and ranked with the same weight as items indexed with the maximum value.

Declaration
[JsonProperty("maximumValue")]
public virtual long? MaximumValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MinimumValue

The minimum value of the property. The minimum and maximum values for the property are used to rank results according to the ordered ranking. Indexing requests with values less than the minimum are accepted and ranked with the same weight as items indexed with the minimum value.

Declaration
[JsonProperty("minimumValue")]
public virtual long? MinimumValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

OperatorOptions

If set, describes how the integer should be used as a search operator.

Declaration
[JsonProperty("operatorOptions")]
public virtual IntegerOperatorOptions OperatorOptions { get; set; }
Property Value
Type Description
IntegerOperatorOptions

OrderedRanking

Used to specify the ordered ranking for the integer. Can only be used if isRepeatable is false.

Declaration
[JsonProperty("orderedRanking")]
public virtual string OrderedRanking { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top