Class: Google::Apis::SheetsV4::FilterCriteria
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::FilterCriteria
- 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
Criteria for showing/hiding rows in a filter or filter view.
Instance Attribute Summary collapse
-
#condition ⇒ Google::Apis::SheetsV4::BooleanCondition
A condition that can evaluate to true or false.
-
#hidden_values ⇒ Array<String>
Values that should be hidden.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FilterCriteria
constructor
A new instance of FilterCriteria.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FilterCriteria
Returns a new instance of FilterCriteria
4250 4251 4252 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4250 def initialize(**args) update!(**args) end |
Instance Attribute Details
#condition ⇒ Google::Apis::SheetsV4::BooleanCondition
A condition that can evaluate to true or false.
BooleanConditions are used by conditional formatting,
data validation, and the criteria in filters.
Corresponds to the JSON property condition
4243 4244 4245 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4243 def condition @condition end |
#hidden_values ⇒ Array<String>
Values that should be hidden.
Corresponds to the JSON property hiddenValues
4248 4249 4250 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4248 def hidden_values @hidden_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4255 4256 4257 4258 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4255 def update!(**args) @condition = args[:condition] if args.key?(:condition) @hidden_values = args[:hidden_values] if args.key?(:hidden_values) end |