Skip to main content

ManualWorkItemDetailsOriginalOwner

Identity of original work item owner, if the work item has been forwarded.

Properties

NameTypeDescriptionNotes
typeEnum [ 'GOVERNANCE_GROUP', 'IDENTITY' ]DTO type of original work item owner's identity.[optional]
idstrID of original work item owner's identity.[optional]
namestrDisplay name of original work item owner.[optional]
}

Example

from sailpoint.v2024.models.manual_work_item_details_original_owner import ManualWorkItemDetailsOriginalOwner

manual_work_item_details_original_owner = ManualWorkItemDetailsOriginalOwner(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]