Show / Hide Table of Contents

Class ContextValue

A message representing context for a KeyRangeInfo, including a label, value, unit, and severity.

Inheritance
System.Object
ContextValue
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.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class ContextValue : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Label

The label for the context value. e.g. "latency".

Declaration
[JsonProperty("label")]
public virtual LocalizedString Label { get; set; }
Property Value
Type Description
LocalizedString

Severity

The severity of this context.

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

Unit

The unit of the context value.

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

Value

The value for the context.

Declaration
[JsonProperty("value")]
public virtual float? Value { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

IDirectResponseSchema
In This Article
Back to top