Show / Hide Table of Contents

Class QueryParameter

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

Properties

ETag

The ETag of the item.

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

Name

[Optional] If unset, this is a positional parameter. Otherwise, should be unique within a query.

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

ParameterType

[Required] The type of this parameter.

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

ParameterValue

[Required] The value of this parameter.

Declaration
[JsonProperty("parameterValue")]
public virtual QueryParameterValue ParameterValue { get; set; }
Property Value
Type Description
QueryParameterValue

Implements

IDirectResponseSchema
In This Article
Back to top