Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/ApprovalComment.md
2025-07-25 19:23:51 +00:00

1.1 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
beta-approval-comment ApprovalComment ApprovalComment ApprovalComment pythonsdk
python
Python
sdk
ApprovalComment
BetaApprovalComment
/tools/sdk/python/beta/models/approval-comment
SDK
Software Development Kit
ApprovalComment
BetaApprovalComment

ApprovalComment

Comments Object

Properties

Name Type Description Notes
author ApprovalIdentity [optional]
comment str Comment to be left on an approval [optional]
created_date str Date the comment was created [optional]
}

Example

from sailpoint.beta.models.approval_comment import ApprovalComment

approval_comment = ApprovalComment(
author=sailpoint.beta.models.approval_identity.Approval Identity(
                    id = '85d173e7d57e496569df763231d6deb6a', 
                    type = 'IDENTITY', 
                    name = 'John Doe', ),
comment='Looks good',
created_date='2023-04-12T23:20:50.52Z'
)

[Back to top]