class Google::Apis::SheetsV4::BatchUpdateSpreadsheetResponse

The reply for batch updating a spreadsheet.

Attributes

replies[RW]

The reply of the updates. This maps 1:1 with the updates, although replies to some requests may be empty. Corresponds to the JSON property `replies` @return [Array<Google::Apis::SheetsV4::Response>]

spreadsheet_id[RW]

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

updated_spreadsheet[RW]

Resource that represents a spreadsheet. Corresponds to the JSON property `updatedSpreadsheet` @return [Google::Apis::SheetsV4::Spreadsheet]

Public Class Methods

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