class Google::Apis::BigqueryV2::QueryParameterType
Attributes
array_type[RW]
- Optional
-
The type of the array's elements, if this is an array.
Corresponds to the JSON property `arrayType` @return [Google::Apis::BigqueryV2::QueryParameterType]
struct_types[RW]
- Optional
-
The types of the fields of this struct, in order, if this is a
struct. Corresponds to the JSON property `structTypes` @return [Array<Google::Apis::BigqueryV2::QueryParameterType::StructType>]
type[RW]
- Required
-
The top level type of this field.
Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5029 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 5034 def update!(**args) @array_type = args[:array_type] if args.key?(:array_type) @struct_types = args[:struct_types] if args.key?(:struct_types) @type = args[:type] if args.key?(:type) end