Class: Google::Apis::BigqueryV2::QueryParameterType

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Overview

The type of a query parameter.

Defined Under Namespace

Classes: StructType

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryParameterType

Returns a new instance of QueryParameterType.



7367
7368
7369
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7367

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#array_typeGoogle::Apis::BigqueryV2::QueryParameterType

The type of a query parameter. Corresponds to the JSON property arrayType



7349
7350
7351
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7349

def array_type
  @array_type
end

#range_element_typeGoogle::Apis::BigqueryV2::QueryParameterType

The type of a query parameter. Corresponds to the JSON property rangeElementType



7354
7355
7356
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7354

def range_element_type
  @range_element_type
end

#struct_typesArray<Google::Apis::BigqueryV2::QueryParameterType::StructType>

Optional. The types of the fields of this struct, in order, if this is a struct. Corresponds to the JSON property structTypes



7360
7361
7362
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7360

def struct_types
  @struct_types
end

#typeString

Required. The top level type of this field. Corresponds to the JSON property type

Returns:

  • (String)


7365
7366
7367
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7365

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7372
7373
7374
7375
7376
7377
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7372

def update!(**args)
  @array_type = args[:array_type] if args.key?(:array_type)
  @range_element_type = args[:range_element_type] if args.key?(:range_element_type)
  @struct_types = args[:struct_types] if args.key?(:struct_types)
  @type = args[:type] if args.key?(:type)
end