Skip to main content

AccessRequestApproversListResponse

Properties

NameTypeDescriptionNotes
idstrApprover id.[optional]
emailstrEmail of the approver.[optional]
namestrName of the approver.[optional]
approval_idstrId of the approval item.[optional]
typestrType of the object returned. In this case, the value for this field will always Identity.[optional]
}

Example

from sailpoint.v2024.models.access_request_approvers_list_response import AccessRequestApproversListResponse

access_request_approvers_list_response = AccessRequestApproversListResponse(
id='id12345',
email='jdoe@sailpoint.com',
name='John Doe',
approval_id='ap12345',
type='Identity'
)

[Back to top]