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

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

Data about each cell in a row.

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) ⇒ RowData

Returns a new instance of RowData.



3812
3813
3814
# File 'generated/google/apis/sheets_v4/classes.rb', line 3812

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



3810
3811
3812
# File 'generated/google/apis/sheets_v4/classes.rb', line 3810

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3817
3818
3819
# File 'generated/google/apis/sheets_v4/classes.rb', line 3817

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