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