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

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

CommentDto

Properties

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

Examples

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

[Back to top]