Class: Kentico::Kontent::Delivery::QueryParameters::Filter
- Inherits:
-
ParameterBase
- Object
- ParameterBase
- Kentico::Kontent::Delivery::QueryParameters::Filter
- Defined in:
- lib/delivery/query_parameters/filters.rb
Overview
Provides the base class for filter implementations. See developer.kenticocloud.com/v1/reference#content-filtering
Constant Summary
Constants inherited from ParameterBase
Instance Attribute Summary
Attributes inherited from ParameterBase
Instance Method Summary collapse
-
#initialize(key, operator, values) ⇒ Filter
constructor
Constructor.
Methods inherited from ParameterBase
#provide_query_string_parameter
Constructor Details
#initialize(key, operator, values) ⇒ Filter
Constructor.
-
Args:
-
key (
string
) The field to filter upon -
operator (
string
) The Kentico Kontent filter being applied to the field, in brackets -
values (
Object
) One or more values which will appear as the value of the query string parameter
-
16 17 18 |
# File 'lib/delivery/query_parameters/filters.rb', line 16 def initialize(key, operator, values) super(key, operator, values) end |