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
2844 2845 2846 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2844 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
[Optional] Human-oriented description of the field.
Corresponds to the JSON property description
2832 2833 2834 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2832 def description @description end |
#name ⇒ String
[Optional] The name of this field.
Corresponds to the JSON property name
2837 2838 2839 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2837 def name @name end |
#type ⇒ Google::Apis::BigqueryV2::QueryParameterType
[Required] The type of this field.
Corresponds to the JSON property type
2842 2843 2844 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2842 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2849 2850 2851 2852 2853 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2849 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 |