Class: Google::Apis::SheetsV4::BatchGetValuesByDataFilterResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SheetsV4::BatchGetValuesByDataFilterResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
 generated/google/apis/sheets_v4/representations.rb,
 generated/google/apis/sheets_v4/representations.rb
Overview
The response when retrieving more than one range of values in a spreadsheet selected by DataFilters.
Instance Attribute Summary collapse
- 
  
    
      #spreadsheet_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the spreadsheet the data was retrieved from. 
- 
  
    
      #value_ranges  ⇒ Array<Google::Apis::SheetsV4::MatchedValueRange> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The requested values with the list of data filters that matched them. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BatchGetValuesByDataFilterResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BatchGetValuesByDataFilterResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BatchGetValuesByDataFilterResponse
Returns a new instance of BatchGetValuesByDataFilterResponse
| 1566 1567 1568 | # File 'generated/google/apis/sheets_v4/classes.rb', line 1566 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#spreadsheet_id ⇒ String
The ID of the spreadsheet the data was retrieved from.
Corresponds to the JSON property spreadsheetId
| 1559 1560 1561 | # File 'generated/google/apis/sheets_v4/classes.rb', line 1559 def spreadsheet_id @spreadsheet_id end | 
#value_ranges ⇒ Array<Google::Apis::SheetsV4::MatchedValueRange>
The requested values with the list of data filters that matched them.
Corresponds to the JSON property valueRanges
| 1564 1565 1566 | # File 'generated/google/apis/sheets_v4/classes.rb', line 1564 def value_ranges @value_ranges end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1571 1572 1573 1574 | # File 'generated/google/apis/sheets_v4/classes.rb', line 1571 def update!(**args) @spreadsheet_id = args[:spreadsheet_id] if args.key?(:spreadsheet_id) @value_ranges = args[:value_ranges] if args.key?(:value_ranges) end |