Show / Hide Table of Contents

Class Value

Definition of a single value with generic type.

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

Properties

BooleanValue

Declaration
[JsonProperty("booleanValue")]
public virtual bool? BooleanValue { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DateValue

Declaration
[JsonProperty("dateValue")]
public virtual Date DateValue { get; set; }
Property Value
Type Description
Date

DoubleValue

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

ETag

The ETag of the item.

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

IntegerValue

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

StringValue

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

TimestampValue

Declaration
[JsonProperty("timestampValue")]
public virtual object TimestampValue { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
Back to top