Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/Approval.md
2025-03-10 11:34:32 -04:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
approval Approval Approval Approval pythonsdk
python
Python
sdk
Approval
Approval
/tools/sdk/python/v3/models/approval
SDK
Software Development Kit
Approval
Approval

Approval

Properties

Name Type Description Notes
comments []ApprovalComment [optional]
modified datetime A date-time in ISO-8601 format [optional]
owner ActivityIdentity [optional]
result str The result of the approval [optional]
attribute_request AttributeRequest [optional]
source AccountSource [optional]
}

Example

from sailpoint.v3.models.approval import Approval

approval = Approval(
comments=[
                    sailpoint.v3.models.approval_comment.ApprovalComment(
                        comment = 'This request was autoapproved by our automated ETS subscriber.', 
                        commenter = 'Automated AR Approval', 
                        date = '2018-06-25T20:22:28.104Z', )
                    ],
modified='2018-06-25T20:22:28.104Z',
owner=,
result='Finished',
attribute_request=sailpoint.v3.models.attribute_request.AttributeRequest(
                    name = 'groups', 
                    op = 'Add', 
                    value = null, ),
source=
)

[Back to top]