Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/LifecyclestateDeleted.md
2025-04-07 15:44:32 +00:00

1.1 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-lifecyclestate-deleted LifecyclestateDeleted LifecyclestateDeleted LifecyclestateDeleted pythonsdk
python
Python
sdk
LifecyclestateDeleted
V2024LifecyclestateDeleted
/tools/sdk/python/v2024/models/lifecyclestate-deleted
SDK
Software Development Kit
LifecyclestateDeleted
V2024LifecyclestateDeleted

LifecyclestateDeleted

Deleted lifecycle state.

Properties

Name Type Description Notes
type Enum [ 'LIFECYCLE_STATE', 'TASK_RESULT' ] Deleted lifecycle state's DTO type. [optional]
id str Deleted lifecycle state ID. [optional]
name str Deleted lifecycle state's display name. [optional]
}

Example

from sailpoint.v2024.models.lifecyclestate_deleted import LifecyclestateDeleted

lifecyclestate_deleted = LifecyclestateDeleted(
type='LIFECYCLE_STATE',
id='12345',
name='Contractor Lifecycle'
)

[Back to top]