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

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

ApprovalComment

Properties

Name Type Description Notes
comment str The comment text [optional]
commenter str The name of the commenter [optional]
var_date datetime A date-time in ISO-8601 format [optional]
}

Example

from sailpoint.v3.models.approval_comment import ApprovalComment

approval_comment = ApprovalComment(
comment='This request was autoapproved by our automated ETS subscriber.',
commenter='Automated AR Approval',
var_date='2018-06-25T20:22:28.104Z'
)

[Back to top]