adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

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