class Google::Apis::SheetsV4::ErrorValue

An error in a cell.

Attributes

message[RW]

A message with more information about the error (in the spreadsheet's locale). Corresponds to the JSON property `message` @return [String]

type[RW]

The type of error. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 5357
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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