--- id: v2025-saved-search-name title: SavedSearchName pagination_label: SavedSearchName sidebar_label: SavedSearchName sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'SavedSearchName', 'V2025SavedSearchName'] slug: /tools/sdk/python/v2025/models/saved-search-name tags: ['SDK', 'Software Development Kit', 'SavedSearchName', 'V2025SavedSearchName'] --- # 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 ```python from sailpoint.v2025.models.saved_search_name import SavedSearchName saved_search_name = SavedSearchName( name='Disabled accounts', description='Disabled accounts' ) ``` [[Back to top]](#)