Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/SavedSearchName.md
2025-02-20 12:59:19 -05:00

871 B

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-name SavedSearchName SavedSearchName SavedSearchName pythonsdk
python
Python
sdk
SavedSearchName
V2024SavedSearchName
/tools/sdk/python/v2024/models/saved-search-name
SDK
Software Development Kit
SavedSearchName
V2024SavedSearchName

SavedSearchName

Properties

Name Type Description Notes
name str The name of the saved search. [optional]
description str The description of the saved search. [optional]
}

Example

from sailpoint.v2024.models.saved_search_name import SavedSearchName

saved_search_name = SavedSearchName(
name='Disabled accounts',
description='Disabled accounts'
)

[Back to top]