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.ApprovalIdentity(
id = '85d173e7d57e496569df763231d6deb6a',
type = 'IDENTITY',
name = 'John Doe', ),
comment='Looks good',
created_date='2023-04-12T23:20:50.52Z'
)