Show / Hide Table of Contents

Class QueryParameterType.StructTypesData

[Optional] The types of the fields of this struct, in order, if this is a struct.

Inheritance
System.Object
QueryParameterType.StructTypesData
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 StructTypesData

Properties

Description

[Optional] Human-oriented description of the field.

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

Name

[Optional] The name of this field.

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

Type

[Required] The type of this field.

Declaration
[JsonProperty("type")]
public virtual QueryParameterType Type { get; set; }
Property Value
Type Description
QueryParameterType
In This Article
Back to top