Class: Google::Apis::SheetsV4::DataSourceSheetDimensionRange

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

A range along a single dimension on a DATA_SOURCE sheet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DataSourceSheetDimensionRange



4385
4386
4387
# File 'lib/google/apis/sheets_v4/classes.rb', line 4385

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

Instance Attribute Details

#column_referencesArray<Google::Apis::SheetsV4::DataSourceColumnReference>

The columns on the data source sheet. Corresponds to the JSON property columnReferences



4378
4379
4380
# File 'lib/google/apis/sheets_v4/classes.rb', line 4378

def column_references
  @column_references
end

#sheet_idFixnum

The ID of the data source sheet the range is on. Corresponds to the JSON property sheetId



4383
4384
4385
# File 'lib/google/apis/sheets_v4/classes.rb', line 4383

def sheet_id
  @sheet_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4390
4391
4392
4393
# File 'lib/google/apis/sheets_v4/classes.rb', line 4390

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