Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/ApprovalInfoResponse.md
2025-02-20 12:59:19 -05:00

987 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-approval-info-response ApprovalInfoResponse ApprovalInfoResponse ApprovalInfoResponse pythonsdk
python
Python
sdk
ApprovalInfoResponse
BetaApprovalInfoResponse
/tools/sdk/python/beta/models/approval-info-response
SDK
Software Development Kit
ApprovalInfoResponse
BetaApprovalInfoResponse

ApprovalInfoResponse

Properties

Name Type Description Notes
id str the id of approver [optional]
name str the name of approver [optional]
status str the status of the approval request [optional]
}

Example

from sailpoint.beta.models.approval_info_response import ApprovalInfoResponse

approval_info_response = ApprovalInfoResponse(
id='8a80828f643d484f01643e14202e2000',
name='John Snow',
status='Approved'
)

[Back to top]