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

977 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-dto1 CommentDto1 CommentDto1 CommentDto1 powershellsdk
powershell
PowerShell
sdk
CommentDto1
BetaCommentDto1
/tools/sdk/powershell/beta/models/comment-dto1
SDK
Software Development Kit
CommentDto1
BetaCommentDto1

CommentDto1

Properties

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

Examples

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

[Back to top]