class Google::Apis::SheetsV4::PivotFilterSpec
The pivot table filter criteria associated with a specific source column offset.
Attributes
column_offset_index[RW]
The column offset of the source range. Corresponds to the JSON property `columnOffsetIndex` @return [Fixnum]
data_source_column_reference[RW]
An unique identifier that references a data source column. Corresponds to the JSON property `dataSourceColumnReference` @return [Google::Apis::SheetsV4::DataSourceColumnReference]
filter_criteria[RW]
Criteria for showing/hiding rows in a pivot table. Corresponds to the JSON property `filterCriteria` @return [Google::Apis::SheetsV4::PivotFilterCriteria]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 7155 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 7160 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