Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/CommentDtoAuthor.md
2025-01-28 13:29:29 -05: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-dto-author CommentDtoAuthor CommentDtoAuthor CommentDtoAuthor powershellsdk
powershell
PowerShell
sdk
CommentDtoAuthor
BetaCommentDtoAuthor
/tools/sdk/powershell/beta/models/comment-dto-author
SDK
Software Development Kit
CommentDtoAuthor
BetaCommentDtoAuthor

CommentDtoAuthor

Properties

Name Type Description Notes
Type Pointer to Enum [ "IDENTITY" ] DTO type of the commenting identity. [optional]
Id Pointer to String ID of the commenting identity. [optional]
Name Pointer to String Display name of the commenting identity. [optional]

Examples

  • Prepare the resource
$CommentDtoAuthor = Initialize-PSSailpoint.BetaCommentDtoAuthor  -Type IDENTITY `
 -Id 2c91808568c529c60168cca6f90c1313 `
 -Name Adam Kennedy
  • Convert the resource to JSON
$CommentDtoAuthor | ConvertTo-JSON

[Back to top]