Class: Google::Apis::SheetsV4::PivotValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb

Overview

The definition of how a value in a pivot table should be calculated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PivotValue

Returns a new instance of PivotValue



3840
3841
3842
# File 'generated/google/apis/sheets_v4/classes.rb', line 3840

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

Instance Attribute Details

#formulaString

A custom formula to calculate the value. The formula must start with an = character. Corresponds to the JSON property formula

Returns:

  • (String)


3814
3815
3816
# File 'generated/google/apis/sheets_v4/classes.rb', line 3814

def formula
  @formula
end

#nameString

A name to use for the value. This is only used if formula was set. Otherwise, the column name is used. Corresponds to the JSON property name

Returns:

  • (String)


3838
3839
3840
# File 'generated/google/apis/sheets_v4/classes.rb', line 3838

def name
  @name
end

#source_column_offsetFixnum

The column offset of the source range that this value reads from. For example, if the source was C10:E15, a sourceColumnOffset of 0 means this value refers to column C, whereas the offset 1 would refer to column D. Corresponds to the JSON property sourceColumnOffset

Returns:

  • (Fixnum)


3832
3833
3834
# File 'generated/google/apis/sheets_v4/classes.rb', line 3832

def source_column_offset
  @source_column_offset
end

#summarize_functionString

A function to summarize the value. If formula is set, the only supported values are SUM and CUSTOM. If sourceColumnOffset is set, then CUSTOM is not supported. Corresponds to the JSON property summarizeFunction

Returns:

  • (String)


3824
3825
3826
# File 'generated/google/apis/sheets_v4/classes.rb', line 3824

def summarize_function
  @summarize_function
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3845
3846
3847
3848
3849
3850
# File 'generated/google/apis/sheets_v4/classes.rb', line 3845

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