Class: Google::Apis::SheetsV4::ErrorValue
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::ErrorValue
- 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
An error in a cell.
Instance Attribute Summary collapse
-
#message ⇒ String
A message with more information about the error (in the spreadsheet's locale).
-
#type ⇒ String
The type of error.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ErrorValue
constructor
A new instance of ErrorValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ErrorValue
Returns a new instance of ErrorValue.
5357 5358 5359 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5357 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message ⇒ String
A message with more information about the error (in the spreadsheet's locale).
Corresponds to the JSON property message
5350 5351 5352 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5350 def @message end |
#type ⇒ String
The type of error.
Corresponds to the JSON property type
5355 5356 5357 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5355 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5362 5363 5364 5365 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 5362 def update!(**args) @message = args[:message] if args.key?(:message) @type = args[:type] if args.key?(:type) end |