Skip to main content

LifecycleStateDto

Properties

NameTypeDescriptionNotes
state_namestrThe name of the lifecycle state[required]
manually_updatedboolWhether the lifecycle state has been manually or automatically set[required]
}

Example

from sailpoint.beta.models.lifecycle_state_dto import LifecycleStateDto

lifecycle_state_dto = LifecycleStateDto(
state_name='active',
manually_updated=True
)

[Back to top]