SearchcriteriaTextQuery
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| terms | []str | Terms to search for. | [optional] |
| fields | []str | Fields to search within. | [optional] |
| match_any | bool | Whether to match any of the terms. | [optional] [default to False] |
| } |
Example
from sailpoint.suggested_entitlement_description.models.searchcriteria_text_query import SearchcriteriaTextQuery
searchcriteria_text_query = SearchcriteriaTextQuery(
terms=["admin","user"],
fields=["role","name"],
match_any=True
)