public static interface Rule.FilterActionOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getFilter()
public abstract String getFilter()A filter to apply on the matching condition results. Supported features:
- filter must be set.
- Filter syntax is identical to SearchRequest.filter. For more information, see Filter.
- To filter products with product ID "product_1" or "product_2", and color "Red" or "Blue":<br> (id: ANY("product_1", "product_2"))<br> AND<br> (colorFamilies: ANY("Red", "Blue"))<br>
string filter = 1;
| Returns | |
|---|---|
| Type | Description |
String |
The filter. |
getFilterBytes()
public abstract ByteString getFilterBytes()A filter to apply on the matching condition results. Supported features:
- filter must be set.
- Filter syntax is identical to SearchRequest.filter. For more information, see Filter.
- To filter products with product ID "product_1" or "product_2", and color "Red" or "Blue":<br> (id: ANY("product_1", "product_2"))<br> AND<br> (colorFamilies: ANY("Red", "Blue"))<br>
string filter = 1;
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for filter. |