class Google::Apis::SheetsV4::BatchGetValuesResponse

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

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. The order of the ValueRanges is the same as the order of the requested ranges. Corresponds to the JSON property `valueRanges` @return [Array<Google::Apis::SheetsV4::ValueRange>]

Public Class Methods

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