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

962 B

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-dto CommentDto CommentDto CommentDto powershellsdk
powershell
PowerShell
sdk
CommentDto
BetaCommentDto
/tools/sdk/powershell/beta/models/comment-dto
SDK
Software Development Kit
CommentDto
BetaCommentDto

CommentDto

Properties

Name Type Description Notes
Comment String Comment content. [optional]
Author CommentDtoAuthor [optional]
Created System.DateTime Date and time comment was created. [optional]

Examples

  • Prepare the resource
$CommentDto = Initialize-BetaCommentDto  -Comment This is a comment. `
 -Author null `
 -Created 2017-07-11T18:45:37.098Z
  • Convert the resource to JSON
$CommentDto | ConvertTo-JSON

[Back to top]