class Google::Apis::SheetsV4::MatchedValueRange
A value range that was matched by one or more data filers.
Attributes
data_filters[RW]
The DataFilters from the request that matched the range of values. Corresponds to the JSON property `dataFilters` @return [Array<Google::Apis::SheetsV4::DataFilter>]
value_range[RW]
Data within a range of the spreadsheet. Corresponds to the JSON property `valueRange` @return [Google::Apis::SheetsV4::ValueRange]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 6620 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sheets_v4/classes.rb, line 6625 def update!(**args) @data_filters = args[:data_filters] if args.key?(:data_filters) @value_range = args[:value_range] if args.key?(:value_range) end