Class: Google::Apis::SheetsV4::MatchedValueRange

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb

Overview

A value range that was matched by one or more data filers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MatchedValueRange

Returns a new instance of MatchedValueRange.



6745
6746
6747
# File 'lib/google/apis/sheets_v4/classes.rb', line 6745

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_filtersArray<Google::Apis::SheetsV4::DataFilter>

The DataFilters from the request that matched the range of values. Corresponds to the JSON property dataFilters



6738
6739
6740
# File 'lib/google/apis/sheets_v4/classes.rb', line 6738

def data_filters
  @data_filters
end

#value_rangeGoogle::Apis::SheetsV4::ValueRange

Data within a range of the spreadsheet. Corresponds to the JSON property valueRange



6743
6744
6745
# File 'lib/google/apis/sheets_v4/classes.rb', line 6743

def value_range
  @value_range
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6750
6751
6752
6753
# File 'lib/google/apis/sheets_v4/classes.rb', line 6750

def update!(**args)
  @data_filters = args[:data_filters] if args.key?(:data_filters)
  @value_range = args[:value_range] if args.key?(:value_range)
end