Package com.courier.models.audiences
Class Filter
-
- All Implemented Interfaces:
public final class Filter
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classFilter.BuilderA builder for Filter.
public final classFilter.OperatorThe operator to use for filtering
-
Method Summary
Modifier and Type Method Description final Filter.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<Filter.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 Filter.BuildertoBuilder()final Filtervalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static Filter.Builderbuilder()Returns a mutable builder for constructing an instance of Filter. -
-
Method Detail
-
operator
final Filter.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<Filter.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 Filter.Builder toBuilder()
-
builder
final static Filter.Builder builder()
Returns a mutable builder for constructing an instance of Filter.
The following fields are required:
.operator() .path() .value()
-
-
-
-