add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2025-comment-dto
title: CommentDto
pagination_label: CommentDto
sidebar_label: CommentDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CommentDto', 'V2025CommentDto']
slug: /tools/sdk/powershell/v2025/models/comment-dto
tags: ['SDK', 'Software Development Kit', 'CommentDto', 'V2025CommentDto']
---
# CommentDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Comment** | **String** | Comment content. | [optional]
**Created** | **System.DateTime** | Date and time comment was created. | [optional]
**Author** | [**CommentDtoAuthor**](comment-dto-author) | | [optional]
## Examples
- Prepare the resource
```powershell
$CommentDto = Initialize-PSSailpoint.V2025CommentDto -Comment This is a comment. `
-Created 2017-07-11T18:45:37.098Z `
-Author null
```
- Convert the resource to JSON
```powershell
$CommentDto | ConvertTo-JSON
```
[[Back to top]](#)