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
| 2493 2494 2495 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2493 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#description ⇒ String
[Optional] Human-oriented description of the field.
Corresponds to the JSON property description
| 2481 2482 2483 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2481 def description @description end | 
#name ⇒ String
[Optional] The name of this field.
Corresponds to the JSON property name
| 2486 2487 2488 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2486 def name @name end | 
#type ⇒ Google::Apis::BigqueryV2::QueryParameterType
[Required] The type of this field.
Corresponds to the JSON property type
| 2491 2492 2493 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2491 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2498 2499 2500 2501 2502 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2498 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 |