Class: Google::Apis::SheetsV4::FilterSpec
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::FilterSpec
- 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 filter criteria associated with a specific column.
Instance Attribute Summary collapse
-
#column_index ⇒ Fixnum
The column index.
-
#data_source_column_reference ⇒ Google::Apis::SheetsV4::DataSourceColumnReference
An unique identifier that references a data source column.
-
#filter_criteria ⇒ Google::Apis::SheetsV4::FilterCriteria
Criteria for showing/hiding rows in a filter or filter view.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FilterSpec
constructor
A new instance of FilterSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FilterSpec
Returns a new instance of FilterSpec.
5570 5571 5572 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column_index ⇒ Fixnum
The column index.
Corresponds to the JSON property columnIndex
5558 5559 5560 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5558 def column_index @column_index end |
#data_source_column_reference ⇒ Google::Apis::SheetsV4::DataSourceColumnReference
An unique identifier that references a data source column.
Corresponds to the JSON property dataSourceColumnReference
5563 5564 5565 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5563 def data_source_column_reference @data_source_column_reference end |
#filter_criteria ⇒ Google::Apis::SheetsV4::FilterCriteria
Criteria for showing/hiding rows in a filter or filter view.
Corresponds to the JSON property filterCriteria
5568 5569 5570 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5568 def filter_criteria @filter_criteria end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5575 5576 5577 5578 5579 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5575 def update!(**args) @column_index = args[:column_index] if args.key?(:column_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 |