Class: Google::Apis::SheetsV4::MatchedValueRange
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SheetsV4::MatchedValueRange
 
- 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
A value range that was matched by one or more data filers.
Instance Attribute Summary collapse
- 
  
    
      #data_filters  ⇒ Array<Google::Apis::SheetsV4::DataFilter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The DataFilters from the request that matched the range of values. 
- 
  
    
      #value_range  ⇒ Google::Apis::SheetsV4::ValueRange 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Data within a range of the spreadsheet. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MatchedValueRange 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MatchedValueRange. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MatchedValueRange
Returns a new instance of MatchedValueRange
| 5686 5687 5688 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5686 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#data_filters ⇒ Array<Google::Apis::SheetsV4::DataFilter>
The DataFilters from the request that matched the range of
values.
Corresponds to the JSON property dataFilters
| 5679 5680 5681 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5679 def data_filters @data_filters end | 
#value_range ⇒ Google::Apis::SheetsV4::ValueRange
Data within a range of the spreadsheet.
Corresponds to the JSON property valueRange
| 5684 5685 5686 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5684 def value_range @value_range end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5691 5692 5693 5694 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5691 def update!(**args) @data_filters = args[:data_filters] if args.key?(:data_filters) @value_range = args[:value_range] if args.key?(:value_range) end |