Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/ApprovalComment2.md
2025-04-01 09:23:12 -04:00

1018 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
v2025-approval-comment2 ApprovalComment2 ApprovalComment2 ApprovalComment2 pythonsdk
python
Python
sdk
ApprovalComment2
V2025ApprovalComment2
/tools/sdk/python/v2025/models/approval-comment2
SDK
Software Development Kit
ApprovalComment2
V2025ApprovalComment2

ApprovalComment2

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.v2025.models.approval_comment2 import ApprovalComment2

approval_comment2 = ApprovalComment2(
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]