Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/Comment.md
2025-05-07 14:37:48 +00:00

1.1 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-comment Comment Comment Comment powershellsdk
powershell
PowerShell
sdk
Comment
BetaComment
/tools/sdk/powershell/beta/models/comment
SDK
Software Development Kit
Comment
BetaComment

Comment

Properties

Name Type Description Notes
CommenterId String Id of the identity making the comment [optional]
CommenterName String Human-readable display name of the identity making the comment [optional]
Body String Content of the comment [optional]
Date System.DateTime Date and time comment was made [optional]

Examples

  • Prepare the resource
$Comment = Initialize-BetaComment  -CommenterId 2c918084660f45d6016617daa9210584 `
 -CommenterName Adam Kennedy `
 -Body Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat. `
 -Date 2017-07-11T18:45:37.098Z
  • Convert the resource to JSON
$Comment | ConvertTo-JSON

[Back to top]