Class: Google::Apis::SheetsV4::BatchUpdateSpreadsheetResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb

Overview

The reply for batch updating a spreadsheet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BatchUpdateSpreadsheetResponse

Returns a new instance of BatchUpdateSpreadsheetResponse.



1748
1749
1750
# File 'lib/google/apis/sheets_v4/classes.rb', line 1748

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#repliesArray<Google::Apis::SheetsV4::Response>

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



1736
1737
1738
# File 'lib/google/apis/sheets_v4/classes.rb', line 1736

def replies
  @replies
end

#spreadsheet_idString

The spreadsheet the updates were applied to. Corresponds to the JSON property spreadsheetId

Returns:

  • (String)


1741
1742
1743
# File 'lib/google/apis/sheets_v4/classes.rb', line 1741

def spreadsheet_id
  @spreadsheet_id
end

#updated_spreadsheetGoogle::Apis::SheetsV4::Spreadsheet

Resource that represents a spreadsheet. Corresponds to the JSON property updatedSpreadsheet



1746
1747
1748
# File 'lib/google/apis/sheets_v4/classes.rb', line 1746

def updated_spreadsheet
  @updated_spreadsheet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1753
1754
1755
1756
1757
# File 'lib/google/apis/sheets_v4/classes.rb', line 1753

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