Skip to main content

Approverdto

Contains detailed information about the approver, including their identity, contact details, type, and references to related identities such as owners, actioned identities, and members.

Properties

NameTypeDescriptionNotes
identity_idstrIdentity ID and it cannot be null.[optional]
idstrOptional id[optional]
namestrIdentity display name[optional]
emailstrEmail address of identity[optional]
typestrUsed to mention type of data transfer object in this case it is used to transfer IDENTITY data.[optional]
owner_of[]ApproverreferenceList of reference of identity type dto for account owner identities[optional]
actioned_as[]ApproverreferenceList of reference of identity type dto who acted on behalf of other identities.[optional]
members[]ApproverreferenceList of reference of identity type dto for member identities.[optional]
}

Example

from sailpoint.account_deletion_requests.models.approverdto import Approverdto

approverdto = Approverdto(
identity_id='22efd140d88a4ceeab32c8829973244c',
id='',
name='SailPoint Support',
email='support@testmail.identitysoon.com',
type='IDENTITY',
owner_of=[
sailpoint.account_deletion_requests.models.approver_reference.ApproverReference(
id = '85131bd73fdc423599e57f40b29f01fe',
type = 'IDENTITY',
name = 'SailPoint Support', )
],
actioned_as=[
sailpoint.account_deletion_requests.models.approver_reference.ApproverReference(
id = '85131bd73fdc423599e57f40b29f01fe',
type = 'IDENTITY',
name = 'SailPoint Support', )
],
members=[
sailpoint.account_deletion_requests.models.approver_reference.ApproverReference(
id = '85131bd73fdc423599e57f40b29f01fe',
type = 'IDENTITY',
name = 'SailPoint Support', )
]
)

[Back to top]