Class Value
Value
represents a dynamically typed value which is the outcome of an executed script.
Implements
Inherited Members
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 |