Class: Google::Apis::SheetsV4::ClearValuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::ClearValuesResponse
- 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 clearing a range of values in a spreadsheet.
Instance Attribute Summary collapse
-
#cleared_range ⇒ String
The range (in A1 notation) that was cleared.
-
#spreadsheet_id ⇒ String
The spreadsheet the updates were applied to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClearValuesResponse
constructor
A new instance of ClearValuesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ClearValuesResponse
Returns a new instance of ClearValuesResponse.
237 238 239 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 237 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cleared_range ⇒ String
The range (in A1 notation) that was cleared.
(If the request was for an unbounded range or a ranger larger
than the bounds of the sheet, this will be the actual range
that was cleared, bounded to the sheet's limits.)
Corresponds to the JSON property clearedRange
235 236 237 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 235 def cleared_range @cleared_range end |
#spreadsheet_id ⇒ String
The spreadsheet the updates were applied to.
Corresponds to the JSON property spreadsheetId
227 228 229 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 227 def spreadsheet_id @spreadsheet_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
242 243 244 245 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 242 def update!(**args) @spreadsheet_id = args[:spreadsheet_id] if args.key?(:spreadsheet_id) @cleared_range = args[:cleared_range] if args.key?(:cleared_range) end |