Skip to main content

ManualworkitemdetailsCurrentOwner

Identity of current work item owner.

Properties

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

Example

from sailpoint.access_requests.models.manualworkitemdetails_current_owner import ManualworkitemdetailsCurrentOwner

manualworkitemdetails_current_owner = ManualworkitemdetailsCurrentOwner(
type='IDENTITY',
id='2c3780a46faadee4016fb4e018c20652',
name='Allen Albertson'
)

[Back to top]