Class ListFilter.Builder
-
- All Implemented Interfaces:
public final class ListFilter.BuilderA builder for ListFilter.
-
-
Method Summary
-
-
Method Detail
-
operator
final ListFilter.Builder operator(ListFilter.Operator operator)
Send to users only if they are member of the account
-
operator
final ListFilter.Builder operator(JsonField<ListFilter.Operator> operator)
Sets Builder.operator to an arbitrary JSON value.
You should usually call Builder.operator with a well-typed Operator value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
path
final ListFilter.Builder path(ListFilter.Path path)
-
path
final ListFilter.Builder path(JsonField<ListFilter.Path> path)
Sets Builder.path to an arbitrary JSON value.
You should usually call Builder.path with a well-typed Path value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
value
final ListFilter.Builder value(String value)
-
value
final ListFilter.Builder value(JsonField<String> value)
Sets Builder.value to an arbitrary JSON value.
You should usually call Builder.value with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ListFilter.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ListFilter.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ListFilter.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ListFilter.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ListFilter.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ListFilter build()
Returns an immutable instance of ListFilter.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.operator() .path() .value()
-
-
-
-