Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/SearchCriteriaTextQuery.md
2025-05-20 19:57:29 +00:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-search-criteria-text-query SearchCriteriaTextQuery SearchCriteriaTextQuery SearchCriteriaTextQuery pythonsdk
python
Python
sdk
SearchCriteriaTextQuery
V2025SearchCriteriaTextQuery
/tools/sdk/python/v2025/models/search-criteria-text-query
SDK
Software Development Kit
SearchCriteriaTextQuery
V2025SearchCriteriaTextQuery

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

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

[Back to top]