Skip to main content

PendingapprovalOwner

Access item owner's identity.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Access item owner's DTO type.[optional]
idstrAccess item owner's identity ID.[optional]
namestrAccess item owner's human-readable display name.[optional]
}

Example

from sailpoint.access_request_approvals.models.pendingapproval_owner import PendingapprovalOwner

pendingapproval_owner = PendingapprovalOwner(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='Support'
)

[Back to top]