Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/SavedSearchCompleteSearchResultsEntitlement.md
2025-02-20 12:59:19 -05: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
v2024-saved-search-complete-search-results-entitlement SavedSearchCompleteSearchResultsEntitlement SavedSearchCompleteSearchResultsEntitlement SavedSearchCompleteSearchResultsEntitlement pythonsdk
python
Python
sdk
SavedSearchCompleteSearchResultsEntitlement
V2024SavedSearchCompleteSearchResultsEntitlement
/tools/sdk/python/v2024/models/saved-search-complete-search-results-entitlement
SDK
Software Development Kit
SavedSearchCompleteSearchResultsEntitlement
V2024SavedSearchCompleteSearchResultsEntitlement

SavedSearchCompleteSearchResultsEntitlement

A table of entitlements 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.v2024.models.saved_search_complete_search_results_entitlement import SavedSearchCompleteSearchResultsEntitlement

saved_search_complete_search_results_entitlement = SavedSearchCompleteSearchResultsEntitlement(
count='2',
noun='entitlements',
preview=[
                    []
                    ]
)

[Back to top]