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

1.2 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
v2025-approval-comment1 ApprovalComment1 ApprovalComment1 ApprovalComment1 pythonsdk
python
Python
sdk
ApprovalComment1
V2025ApprovalComment1
/tools/sdk/python/v2025/models/approval-comment1
SDK
Software Development Kit
ApprovalComment1
V2025ApprovalComment1

ApprovalComment1

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.v2025.models.approval_comment1 import ApprovalComment1

approval_comment1 = ApprovalComment1(
author=sailpoint.v2025.models.approval_identity.ApprovalIdentity(
                    id = '85d173e7d57e496569df763231d6deb6a', 
                    type = 'IDENTITY', 
                    name = 'John Doe', ),
comment='Looks good',
created_date='2023-04-12T23:20:50.52Z'
)

[Back to top]