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

Inherits:
Object
  • Object
show all
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

An error in a cell.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ErrorValue

Returns a new instance of ErrorValue.



2637
2638
2639
# File 'generated/google/apis/sheets_v4/classes.rb', line 2637

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)


2635
2636
2637
# File 'generated/google/apis/sheets_v4/classes.rb', line 2635

def message
  @message
end

#typeString

The type of error. Corresponds to the JSON property type

Returns:

  • (String)


2629
2630
2631
# File 'generated/google/apis/sheets_v4/classes.rb', line 2629

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2642
2643
2644
2645
# File 'generated/google/apis/sheets_v4/classes.rb', line 2642

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