Class RangeQueryParameterType (3.21.0)

RangeQueryParameterType(type_, *, name=None, description=None)

Type representation for range query parameters.

Parameters

NameDescription
type_ Union[ScalarQueryParameterType, str]

Type of range element, must be one of 'TIMESTAMP', 'DATETIME', or 'DATE'.

name Optional[str]

The name of the query parameter. Primarily used if the type is one of the subfields in StructQueryParameterType instance.

description Optional[str]

The query parameter description. Primarily used if the type is one of the subfields in StructQueryParameterType instance.

Methods

from_api_repr

from_api_repr(resource)

Factory: construct parameter type from JSON resource.

Parameter
NameDescription
resource Dict

JSON mapping of parameter

Returns
TypeDescription
google.cloud.bigquery.query.RangeQueryParameterTypeInstance

to_api_repr

to_api_repr()

Construct JSON API representation for the parameter type.

Returns
TypeDescription
DictJSON mapping

with_name

with_name(new_name: typing.Optional[str])

Return a copy of the instance with name set to new_name.

Parameter
NameDescription
name Union[str, None]

The new name of the range query parameter type. If None, the existing name is cleared.

Returns
TypeDescription
google.cloud.bigquery.query.RangeQueryParameterTypeA new instance with updated name.