Skip to main content

ApprovalStatusDtoOriginalOwner

Identity of orginal approval owner.

Properties

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

Example

from sailpoint.v2024.models.approval_status_dto_original_owner import ApprovalStatusDtoOriginalOwner

approval_status_dto_original_owner = ApprovalStatusDtoOriginalOwner(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]