Class: Google::Apis::SheetsV4::PivotFilterSpec

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

The pivot table filter criteria associated with a specific source column offset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PivotFilterSpec

Returns a new instance of PivotFilterSpec.



7280
7281
7282
# File 'lib/google/apis/sheets_v4/classes.rb', line 7280

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

Instance Attribute Details

#column_offset_indexFixnum

The zero-based column offset of the source range. Corresponds to the JSON property columnOffsetIndex

Returns:

  • (Fixnum)


7268
7269
7270
# File 'lib/google/apis/sheets_v4/classes.rb', line 7268

def column_offset_index
  @column_offset_index
end

#data_source_column_referenceGoogle::Apis::SheetsV4::DataSourceColumnReference

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



7273
7274
7275
# File 'lib/google/apis/sheets_v4/classes.rb', line 7273

def data_source_column_reference
  @data_source_column_reference
end

#filter_criteriaGoogle::Apis::SheetsV4::PivotFilterCriteria

Criteria for showing/hiding rows in a pivot table. Corresponds to the JSON property filterCriteria



7278
7279
7280
# File 'lib/google/apis/sheets_v4/classes.rb', line 7278

def filter_criteria
  @filter_criteria
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7285
7286
7287
7288
7289
# File 'lib/google/apis/sheets_v4/classes.rb', line 7285

def update!(**args)
  @column_offset_index = args[:column_offset_index] if args.key?(:column_offset_index)
  @data_source_column_reference = args[:data_source_column_reference] if args.key?(:data_source_column_reference)
  @filter_criteria = args[:filter_criteria] if args.key?(:filter_criteria)
end