class Google::Apis::SheetsV4::AppendValuesResponse

The response when updating a range of values in a spreadsheet.

Attributes

spreadsheet_id[RW]

The spreadsheet the updates were applied to. Corresponds to the JSON property `spreadsheetId` @return [String]

table_range[RW]

The range (in A1 notation) of the table that values are being appended to ( before the values were appended). Empty if no table was found. Corresponds to the JSON property `tableRange` @return [String]

updates[RW]

The response when updating a range of values in a spreadsheet. Corresponds to the JSON property `updates` @return [Google::Apis::SheetsV4::UpdateValuesResponse]

Public Class Methods

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