Package com.courier.models.audiences
Class SingleFilterConfig
-
- All Implemented Interfaces:
public final class SingleFilterConfig
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSingleFilterConfig.BuilderA builder for SingleFilterConfig.
public final classSingleFilterConfig.OperatorThe operator to use for filtering
-
Method Summary
Modifier and Type Method Description final SingleFilterConfig.Operatoroperator()The operator to use for filtering final Stringpath()The attribe name from profile whose value will be operated against the filter value final Stringvalue()The value to use for filtering final JsonField<SingleFilterConfig.Operator>_operator()Returns the raw JSON value of operator. final JsonField<String>_path()Returns the raw JSON value of path. final JsonField<String>_value()Returns the raw JSON value of value. final Map<String, JsonValue>_additionalProperties()final SingleFilterConfig.BuildertoBuilder()final SingleFilterConfigvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SingleFilterConfig.Builderbuilder()Returns a mutable builder for constructing an instance of SingleFilterConfig. -
-
Method Detail
-
operator
final SingleFilterConfig.Operator operator()
The operator to use for filtering
-
path
final String path()
The attribe name from profile whose value will be operated against the filter value
-
_operator
final JsonField<SingleFilterConfig.Operator> _operator()
Returns the raw JSON value of operator.
Unlike operator, this method doesn't throw if the JSON field has an unexpected type.
-
_path
final JsonField<String> _path()
Returns the raw JSON value of path.
Unlike path, this method doesn't throw if the JSON field has an unexpected type.
-
_value
final JsonField<String> _value()
Returns the raw JSON value of value.
Unlike value, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final SingleFilterConfig.Builder toBuilder()
-
validate
final SingleFilterConfig validate()
-
builder
final static SingleFilterConfig.Builder builder()
Returns a mutable builder for constructing an instance of SingleFilterConfig.
The following fields are required:
.operator() .path() .value()
-
-
-
-