Class QueryParameter
A parameter given to a query.
Implements
Inherited Members
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 |
---|---|
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 |
---|---|
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 |