class Google::Apis::SheetsV4::DataSourceColumn

A column in a data source.

Attributes

formula[RW]

The formula of the calculated column. Corresponds to the JSON property `formula` @return [String]

reference[RW]

An unique identifier that references a data source column. Corresponds to the JSON property `reference` @return [Google::Apis::SheetsV4::DataSourceColumnReference]

Public Class Methods

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