Show / Hide Table of Contents

Class Type

Type indicates the type of a Cloud Spanner value, as might be stored in a table cell or returned from an SQL query.

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

Properties

ArrayElementType

If code == ARRAY, then array_element_type is the type of the array elements.

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

Code

Required. The TypeCode for this type.

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

ETag

The ETag of the item.

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

StructType

If code == STRUCT, then struct_type provides type information for the struct's fields.

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

Implements

IDirectResponseSchema
In This Article
Back to top