class Google::Apis::SheetsV4::GridData

Data in the grid, as well as metadata about the dimensions.

Attributes

column_metadata[RW]

Metadata about the requested columns in the grid, starting with the column in start_column. Corresponds to the JSON property `columnMetadata` @return [Array<Google::Apis::SheetsV4::DimensionProperties>]

row_data[RW]

The data in the grid, one entry per row, starting with the row in startRow. The values in RowData will correspond to columns starting at start_column. Corresponds to the JSON property `rowData` @return [Array<Google::Apis::SheetsV4::RowData>]

row_metadata[RW]

Metadata about the requested rows in the grid, starting with the row in start_row. Corresponds to the JSON property `rowMetadata` @return [Array<Google::Apis::SheetsV4::DimensionProperties>]

start_column[RW]

The first column this GridData refers to, zero-based. Corresponds to the JSON property `startColumn` @return [Fixnum]

start_row[RW]

The first row this GridData refers to, zero-based. Corresponds to the JSON property `startRow` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 5919
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 5924
def update!(**args)
  @column_metadata = args[:column_metadata] if args.key?(:column_metadata)
  @row_data = args[:row_data] if args.key?(:row_data)
  @row_metadata = args[:row_metadata] if args.key?(:row_metadata)
  @start_column = args[:start_column] if args.key?(:start_column)
  @start_row = args[:start_row] if args.key?(:start_row)
end