Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/SavedSearchCompleteSearchResultsIdentity.md
2025-03-21 03:35:56 +00:00

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

SavedSearchCompleteSearchResultsIdentity

Table of identities matching the search criteria.

Properties

Name Type Description Notes
count str Number of rows in the table. [required]
noun str Type of object represented in the table. [required]
preview []List[str] Sample of the table data. [required]
}

Example

from sailpoint.beta.models.saved_search_complete_search_results_identity import SavedSearchCompleteSearchResultsIdentity

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

[Back to top]