class Google::Apis::SheetsV4::BatchGetValuesByDataFilterResponse

The response when retrieving more than one range of values in a spreadsheet selected by DataFilters.

Attributes

spreadsheet_id[RW]

The ID of the spreadsheet the data was retrieved from. Corresponds to the JSON property `spreadsheetId` @return [String]

value_ranges[RW]

The requested values with the list of data filters that matched them. Corresponds to the JSON property `valueRanges` @return [Array<Google::Apis::SheetsV4::MatchedValueRange>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 1645
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 1650
def update!(**args)
  @spreadsheet_id = args[:spreadsheet_id] if args.key?(:spreadsheet_id)
  @value_ranges = args[:value_ranges] if args.key?(:value_ranges)
end