Show / Hide Table of Contents

Class Value

Value represents a dynamically typed value which is the outcome of an executed script.

Inheritance
object
Value
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Script.v1.Data
Assembly: Google.Apis.Script.v1.dll
Syntax
public class Value : IDirectResponseSchema

Properties

BoolValue

Represents a boolean value.

Declaration
[JsonProperty("boolValue")]
public virtual bool? BoolValue { get; set; }
Property Value
Type Description
bool?

BytesValue

Represents raw byte values.

Declaration
[JsonProperty("bytesValue")]
public virtual string BytesValue { get; set; }
Property Value
Type Description
string

DateValue

Represents a date in ms since the epoch.

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

ETag

The ETag of the item.

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

ListValue

Represents a repeated Value.

Declaration
[JsonProperty("listValue")]
public virtual ListValue ListValue { get; set; }
Property Value
Type Description
ListValue

NullValue

Represents a null value.

Declaration
[JsonProperty("nullValue")]
public virtual string NullValue { get; set; }
Property Value
Type Description
string

NumberValue

Represents a double value.

Declaration
[JsonProperty("numberValue")]
public virtual double? NumberValue { get; set; }
Property Value
Type Description
double?

ProtoValue

Represents a structured proto value.

Declaration
[JsonProperty("protoValue")]
public virtual IDictionary<string, object> ProtoValue { get; set; }
Property Value
Type Description
IDictionary<string, object>

StringValue

Represents a string value.

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

StructValue

Represents a structured value.

Declaration
[JsonProperty("structValue")]
public virtual Struct StructValue { get; set; }
Property Value
Type Description
Struct

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX