Show / Hide Table of Contents

Class TypedValue

A single strongly-typed value.

Inheritance
System.Object
TypedValue
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.Monitoring.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class TypedValue : IDirectResponseSchema

Properties

BoolValue

A Boolean value: true or false.

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

DistributionValue

A distribution value.

Declaration
[JsonProperty("distributionValue")]
public virtual Distribution DistributionValue { get; set; }
Property Value
Type Description
Distribution

DoubleValue

A 64-bit double-precision floating-point number. Its magnitude is approximately 10300 and it has 16 significant digits of precision.

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

Int64Value

A 64-bit integer. Its range is approximately 9.2x1018.

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

StringValue

A variable-length string value.

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

Implements

IDirectResponseSchema
Back to top