Show / Hide Table of Contents

Class StandardSqlField

A field or a column.

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

Properties

ETag

The ETag of the item.

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

Name

Optional. The name of this field. Can be absent for struct fields.

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

Type

Optional. The type of this parameter. Absent if not explicitly specified (e.g., CREATE FUNCTION statement can omit the return type; in this case the output parameter does not have this "type" field).

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

Implements

IDirectResponseSchema
In This Article
Back to top