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.v2024.models.pending_approval_owner import PendingApprovalOwner

pending_approval_owner = PendingApprovalOwner(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='Support'
)

[Back to top]