class Google::Apis::SheetsV4::DataSourceSheetDimensionRange

A range along a single dimension on a DATA_SOURCE sheet.

Attributes

column_references[RW]

The columns on the data source sheet. Corresponds to the JSON property `columnReferences` @return [Array<Google::Apis::SheetsV4::DataSourceColumnReference>]

sheet_id[RW]

The ID of the data source sheet the range is on. Corresponds to the JSON property `sheetId` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 4171
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 4176
def update!(**args)
  @column_references = args[:column_references] if args.key?(:column_references)
  @sheet_id = args[:sheet_id] if args.key?(:sheet_id)
end