--- id: beta-comment-dto-author title: CommentDtoAuthor pagination_label: CommentDtoAuthor sidebar_label: CommentDtoAuthor sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'CommentDtoAuthor', 'BetaCommentDtoAuthor'] slug: /tools/sdk/powershell/beta/models/comment-dto-author tags: ['SDK', 'Software Development Kit', 'CommentDtoAuthor', 'BetaCommentDtoAuthor'] --- # CommentDtoAuthor ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Type** | **Enum** [ "IDENTITY" ] | DTO type of the commenting identity. | [optional] **Id** | **String** | ID of the commenting identity. | [optional] **Name** | **String** | Display name of the commenting identity. | [optional] ## Examples - Prepare the resource ```powershell $CommentDtoAuthor = Initialize-PSSailpoint.BetaCommentDtoAuthor -Type IDENTITY ` -Id 2c91808568c529c60168cca6f90c1313 ` -Name Adam Kennedy ``` - Convert the resource to JSON ```powershell $CommentDtoAuthor | ConvertTo-JSON ``` [[Back to top]](#)