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.



4063
4064
4065
# File 'lib/google/apis/sheets_v4/classes.rb', line 4063

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

Instance Attribute Details

#formulaString

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

Returns:

  • (String)


4056
4057
4058
# File 'lib/google/apis/sheets_v4/classes.rb', line 4056

def formula
  @formula
end

#referenceGoogle::Apis::SheetsV4::DataSourceColumnReference

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



4061
4062
4063
# File 'lib/google/apis/sheets_v4/classes.rb', line 4061

def reference
  @reference
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4068
4069
4070
4071
# File 'lib/google/apis/sheets_v4/classes.rb', line 4068

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