Class: Google::Apis::BigqueryV2::QueryParameterType::StructType
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::QueryParameterType::StructType
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
[Optional] Human-oriented description of the field.
-
#name ⇒ String
[Optional] The name of this field.
-
#type ⇒ Google::Apis::BigqueryV2::QueryParameterType
[Required] The type of this field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StructType
constructor
A new instance of StructType.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StructType
Returns a new instance of StructType
2151 2152 2153 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2151 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
[Optional] Human-oriented description of the field.
Corresponds to the JSON property description
2139 2140 2141 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2139 def description @description end |
#name ⇒ String
[Optional] The name of this field.
Corresponds to the JSON property name
2144 2145 2146 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2144 def name @name end |
#type ⇒ Google::Apis::BigqueryV2::QueryParameterType
[Required] The type of this field.
Corresponds to the JSON property type
2149 2150 2151 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2149 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2156 2157 2158 2159 2160 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2156 def update!(**args) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |