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-dto1-author
title: CommentDto1Author
pagination_label: CommentDto1Author
sidebar_label: CommentDto1Author
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CommentDto1Author']
slug: /tools/sdk/powershell/beta/models/comment-dto1-author
tags: ['SDK', 'Software Development Kit', 'CommentDto1Author']
---
# CommentDto1Author
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "IDENTITY" ] | The type of object | [optional]
**Id** | Pointer to **String** | The unique ID of the object | [optional]
**Name** | Pointer to **String** | The display name of the object | [optional]
## Examples
- Prepare the resource
```powershell
$CommentDto1Author = Initialize-PSSailpoint.BetaCommentDto1Author -Type IDENTITY `
-Id 2c9180847e25f377017e2ae8cae4650b `
-Name john.doe
```
- Convert the resource to JSON
```powershell
$CommentDto1Author | ConvertTo-JSON
```
[[Back to top]](#)