Class: Google::Apis::SheetsV4::RowData

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

Data about each cell in a row.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RowData

Returns a new instance of RowData.



8623
8624
8625
# File 'lib/google/apis/sheets_v4/classes.rb', line 8623

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

Instance Attribute Details

#valuesArray<Google::Apis::SheetsV4::CellData>

The values in the row, one per column. Corresponds to the JSON property values



8621
8622
8623
# File 'lib/google/apis/sheets_v4/classes.rb', line 8621

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8628
8629
8630
# File 'lib/google/apis/sheets_v4/classes.rb', line 8628

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