class Google::Apis::BigqueryV2::QueryParameterType::StructType
Attributes
description[RW]
- Optional
-
Human-oriented description of the field.
Corresponds to the JSON property `description` @return [String]
name[RW]
- Optional
-
The name of this field.
Corresponds to the JSON property `name` @return [String]
type[RW]
- Required
-
The type of this field.
Corresponds to the JSON property `type` @return [Google::Apis::BigqueryV2::QueryParameterType]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5059 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 5064 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