Class: Google::Apis::SheetsV4::UpdateValuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::UpdateValuesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
The response when updating a range of values in a spreadsheet.
Instance Attribute Summary collapse
-
#spreadsheet_id ⇒ String
The spreadsheet the updates were applied to.
-
#updated_cells ⇒ Fixnum
The number of cells updated.
-
#updated_columns ⇒ Fixnum
The number of columns where at least one cell in the column was updated.
-
#updated_data ⇒ Google::Apis::SheetsV4::ValueRange
Data within a range of the spreadsheet.
-
#updated_range ⇒ String
The range (in A1 notation) that updates were applied to.
-
#updated_rows ⇒ Fixnum
The number of rows where at least one cell in the row was updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateValuesResponse
constructor
A new instance of UpdateValuesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateValuesResponse
Returns a new instance of UpdateValuesResponse
1601 1602 1603 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1601 def initialize(**args) update!(**args) end |
Instance Attribute Details
#spreadsheet_id ⇒ String
The spreadsheet the updates were applied to.
Corresponds to the JSON property spreadsheetId
1579 1580 1581 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1579 def spreadsheet_id @spreadsheet_id end |
#updated_cells ⇒ Fixnum
The number of cells updated.
Corresponds to the JSON property updatedCells
1589 1590 1591 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1589 def updated_cells @updated_cells end |
#updated_columns ⇒ Fixnum
The number of columns where at least one cell in the column was updated.
Corresponds to the JSON property updatedColumns
1574 1575 1576 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1574 def updated_columns @updated_columns end |
#updated_data ⇒ Google::Apis::SheetsV4::ValueRange
Data within a range of the spreadsheet.
Corresponds to the JSON property updatedData
1599 1600 1601 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1599 def updated_data @updated_data end |
#updated_range ⇒ String
The range (in A1 notation) that updates were applied to.
Corresponds to the JSON property updatedRange
1584 1585 1586 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1584 def updated_range @updated_range end |
#updated_rows ⇒ Fixnum
The number of rows where at least one cell in the row was updated.
Corresponds to the JSON property updatedRows
1594 1595 1596 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1594 def updated_rows @updated_rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1606 1607 1608 1609 1610 1611 1612 1613 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1606 def update!(**args) @updated_columns = args[:updated_columns] if args.key?(:updated_columns) @spreadsheet_id = args[:spreadsheet_id] if args.key?(:spreadsheet_id) @updated_range = args[:updated_range] if args.key?(:updated_range) @updated_cells = args[:updated_cells] if args.key?(:updated_cells) @updated_rows = args[:updated_rows] if args.key?(:updated_rows) @updated_data = args[:updated_data] if args.key?(:updated_data) end |