update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: comment-dto-author
title: CommentDtoAuthor
pagination_label: CommentDtoAuthor
sidebar_label: CommentDtoAuthor
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CommentDtoAuthor']
slug: /tools/sdk/powershell/beta/models/comment-dto-author
tags: ['SDK', 'Software Development Kit', 'CommentDtoAuthor']
---
# 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
```powershell
$CommentDtoAuthor = Initialize-PSSailpoint.BetaCommentDtoAuthor -Type IDENTITY `
-Id 2c91808568c529c60168cca6f90c1313 `
-Name Adam Kennedy
```
- Convert the resource to JSON
```powershell
$CommentDtoAuthor | ConvertTo-JSON
```
[[Back to top]](#)