Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ApprovalComment.md
2025-02-03 22:09:17 +00:00

1.0 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
beta-approval-comment ApprovalComment ApprovalComment ApprovalComment powershellsdk
powershell
PowerShell
sdk
ApprovalComment
BetaApprovalComment
/tools/sdk/powershell/beta/models/approval-comment
SDK
Software Development Kit
ApprovalComment
BetaApprovalComment

ApprovalComment

Properties

Name Type Description Notes
Author ApprovalIdentity [optional]
Comment String Comment to be left on an approval [optional]
CreatedDate String Date the comment was created [optional]

Examples

  • Prepare the resource
$ApprovalComment = Initialize-PSSailpoint.BetaApprovalComment  -Author null `
 -Comment Looks good `
 -CreatedDate 2023-04-12T23:20:50.52Z
  • Convert the resource to JSON
$ApprovalComment | ConvertTo-JSON

[Back to top]