Skip to main content

SearchcriteriaTextQuery

Properties

NameTypeDescriptionNotes
terms[]strTerms to search for.[optional]
fields[]strFields to search within.[optional]
match_anyboolWhether 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
)

[Back to top]