Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/CommentDto.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

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

CommentDto

Properties

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

Examples

  • Prepare the resource
$CommentDto = Initialize-PSSailpoint.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]