Class: Google::Apis::SheetsV4::DataSourceColumn

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 column in a data source.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DataSourceColumn

Returns a new instance of DataSourceColumn.



3846
3847
3848
# File 'lib/google/apis/sheets_v4/classes.rb', line 3846

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

Instance Attribute Details

#formulaString

The formula of the calculated column. Corresponds to the JSON property formula

Returns:

  • (String)


3839
3840
3841
# File 'lib/google/apis/sheets_v4/classes.rb', line 3839

def formula
  @formula
end

#referenceGoogle::Apis::SheetsV4::DataSourceColumnReference

An unique identifier that references a data source column. Corresponds to the JSON property reference



3844
3845
3846
# File 'lib/google/apis/sheets_v4/classes.rb', line 3844

def reference
  @reference
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3851
3852
3853
3854
# File 'lib/google/apis/sheets_v4/classes.rb', line 3851

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