SavedSearchCompleteSearchResults
A preview of the search results for each object type. This includes a count as well as headers, and the first several rows of data, per object type.
Properties
Name | Type | Description | Notes |
---|---|---|---|
account | SavedSearchCompleteSearchResultsAccount | [optional] | |
entitlement | SavedSearchCompleteSearchResultsEntitlement | [optional] | |
identity | SavedSearchCompleteSearchResultsIdentity | [optional] | |
} |
Example
from sailpoint.v2024.models.saved_search_complete_search_results import SavedSearchCompleteSearchResults
saved_search_complete_search_results = SavedSearchCompleteSearchResults(
account=sailpoint.v2024.models.saved_search_complete_search_results_account.SavedSearchComplete_searchResults_Account(
count = '3',
noun = 'accounts',
preview = [
[]
], ),
entitlement=sailpoint.v2024.models.saved_search_complete_search_results_entitlement.SavedSearchComplete_searchResults_Entitlement(
count = '2',
noun = 'entitlements',
preview = [
[]
], ),
identity=sailpoint.v2024.models.saved_search_complete_search_results_identity.SavedSearchComplete_searchResults_Identity(
count = '2',
noun = 'identities',
preview = [
[]
], )
)