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.v2024.models.search_criteria_text_query import SearchCriteriaTextQuery

search_criteria_text_query = SearchCriteriaTextQuery(
terms=[admin, user],
fields=[role, name],
match_any=True
)

[Back to top]