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.



7466
7467
7468
# File 'lib/google/apis/sheets_v4/classes.rb', line 7466

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)


7454
7455
7456
# File 'lib/google/apis/sheets_v4/classes.rb', line 7454

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



7459
7460
7461
# File 'lib/google/apis/sheets_v4/classes.rb', line 7459

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



7464
7465
7466
# File 'lib/google/apis/sheets_v4/classes.rb', line 7464

def filter_criteria
  @filter_criteria
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7471
7472
7473
7474
7475
# File 'lib/google/apis/sheets_v4/classes.rb', line 7471

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