Show / Hide Table of Contents

Class QueryParameterType

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

Properties

ArrayType

[Optional] The type of the array's elements, if this is an array.

Declaration
[JsonProperty("arrayType")]
public virtual QueryParameterType ArrayType { get; set; }
Property Value
Type Description
QueryParameterType

ETag

The ETag of the item.

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

StructTypes

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

Declaration
[JsonProperty("structTypes")]
public virtual IList<QueryParameterType.StructTypesData> StructTypes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<QueryParameterType.StructTypesData>

Type

[Required] The top level type of this field.

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

Implements

IDirectResponseSchema
In This Article
Back to top