Class: Google::Apis::SheetsV4::ErrorValue

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

An error in a cell.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ErrorValue

Returns a new instance of ErrorValue.



5451
5452
5453
# File 'lib/google/apis/sheets_v4/classes.rb', line 5451

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

Instance Attribute Details

#messageString

A message with more information about the error (in the spreadsheet's locale). Corresponds to the JSON property message

Returns:

  • (String)


5444
5445
5446
# File 'lib/google/apis/sheets_v4/classes.rb', line 5444

def message
  @message
end

#typeString

The type of error. Corresponds to the JSON property type

Returns:

  • (String)


5449
5450
5451
# File 'lib/google/apis/sheets_v4/classes.rb', line 5449

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5456
5457
5458
5459
# File 'lib/google/apis/sheets_v4/classes.rb', line 5456

def update!(**args)
  @message = args[:message] if args.key?(:message)
  @type = args[:type] if args.key?(:type)
end