Skip to main content

ApprovalComment1

Comments Object

Properties

NameTypeDescriptionNotes
authorApprovalIdentity[optional]
commentstrComment to be left on an approval[optional]
created_datestrDate the comment was created[optional]
}

Example

from sailpoint.v2024.models.approval_comment1 import ApprovalComment1

approval_comment1 = ApprovalComment1(
author=sailpoint.v2024.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]