Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/SavedSearchCompleteSearchResultsIdentity.md
2025-04-01 09:23:12 -04:00

1.4 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-saved-search-complete-search-results-identity SavedSearchCompleteSearchResultsIdentity SavedSearchCompleteSearchResultsIdentity SavedSearchCompleteSearchResultsIdentity pythonsdk
python
Python
sdk
SavedSearchCompleteSearchResultsIdentity
V2025SavedSearchCompleteSearchResultsIdentity
/tools/sdk/python/v2025/models/saved-search-complete-search-results-identity
SDK
Software Development Kit
SavedSearchCompleteSearchResultsIdentity
V2025SavedSearchCompleteSearchResultsIdentity

SavedSearchCompleteSearchResultsIdentity

A table of identities that match the search criteria.

Properties

Name Type Description Notes
count str The number of rows in the table. [required]
noun str The type of object represented in the table. [required]
preview []List[str] A sample of the data in the table. [required]
}

Example

from sailpoint.v2025.models.saved_search_complete_search_results_identity import SavedSearchCompleteSearchResultsIdentity

saved_search_complete_search_results_identity = SavedSearchCompleteSearchResultsIdentity(
count='2',
noun='identities',
preview=[
                    []
                    ]
)

[Back to top]