mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 04:19:37 +00:00
1.0 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-search-criteria-text-query | SearchCriteriaTextQuery | SearchCriteriaTextQuery | SearchCriteriaTextQuery | pythonsdk |
|
/tools/sdk/python/beta/models/search-criteria-text-query |
|
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.beta.models.search_criteria_text_query import SearchCriteriaTextQuery
search_criteria_text_query = SearchCriteriaTextQuery(
terms=[admin, user],
fields=[role, name],
match_any=True
)