Class: Google::Apis::SheetsV4::RowData
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SheetsV4::RowData
 
- 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
Data about each cell in a row.
Instance Attribute Summary collapse
- 
  
    
      #values  ⇒ Array<Google::Apis::SheetsV4::CellData> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The values in the row, one per column. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RowData 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RowData. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RowData
Returns a new instance of RowData
| 7442 7443 7444 | # File 'generated/google/apis/sheets_v4/classes.rb', line 7442 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#values ⇒ Array<Google::Apis::SheetsV4::CellData>
The values in the row, one per column.
Corresponds to the JSON property values
| 7440 7441 7442 | # File 'generated/google/apis/sheets_v4/classes.rb', line 7440 def values @values end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 7447 7448 7449 | # File 'generated/google/apis/sheets_v4/classes.rb', line 7447 def update!(**args) @values = args[:values] if args.key?(:values) end |