Show / Hide Table of Contents

Class StandardSqlDataType

The data type of a variable such as a function argument. Examples include: * INT64: {"typeKind": "INT64"} * ARRAY: { "typeKind": "ARRAY", "arrayElementType": {"typeKind": "STRING"} } * STRUCT>: { "typeKind": "STRUCT", "structType": { "fields": [ { "name": "x", "type": {"typeKind: "STRING"} }, { "name": "y", "type": { "typeKind": "ARRAY", "arrayElementType": {"typekind": "DATE"} } } ] } }

Inheritance
System.Object
StandardSqlDataType
Implements
Google.Apis.Requests.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.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class StandardSqlDataType : IDirectResponseSchema

Properties

ArrayElementType

The type of the array's elements, if type_kind = "ARRAY".

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

ETag

The ETag of the item.

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

StructType

The fields of this struct, in order, if type_kind = "STRUCT".

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

TypeKind

Required. The top level type of this field. Can be any standard SQL data type (e.g., "INT64", "DATE", "ARRAY").

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top