Class: Google::Apis::SheetsV4::ErrorValue
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SheetsV4::ErrorValue
 
 
- 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
- 
  
    
      #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.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ErrorValue
Returns a new instance of ErrorValue
      4464 4465 4466  | 
    
      # File 'generated/google/apis/sheets_v4/classes.rb', line 4464 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
      4457 4458 4459  | 
    
      # File 'generated/google/apis/sheets_v4/classes.rb', line 4457 def @message end  | 
  
#type ⇒ String
The type of error.
Corresponds to the JSON property type
      4462 4463 4464  | 
    
      # File 'generated/google/apis/sheets_v4/classes.rb', line 4462 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4469 4470 4471 4472  | 
    
      # File 'generated/google/apis/sheets_v4/classes.rb', line 4469 def update!(**args) @message = args[:message] if args.key?(:message) @type = args[:type] if args.key?(:type) end  |