adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-approval-comment1
title: ApprovalComment1
pagination_label: ApprovalComment1
sidebar_label: ApprovalComment1
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalComment1', 'V2024ApprovalComment1']
slug: /tools/sdk/powershell/v2024/models/approval-comment1
tags: ['SDK', 'Software Development Kit', 'ApprovalComment1', 'V2024ApprovalComment1']
---
# ApprovalComment1
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Author** | Pointer to [**ApprovalIdentity**](approval-identity) | | [optional]
**Comment** | Pointer to **String** | Comment to be left on an approval | [optional]
**CreatedDate** | Pointer to **String** | Date the comment was created | [optional]
## Examples
- Prepare the resource
```powershell
$ApprovalComment1 = Initialize-PSSailpoint.V2024ApprovalComment1 -Author null `
-Comment Looks good `
-CreatedDate 2023-04-12T23:20:50.52Z
```
- Convert the resource to JSON
```powershell
$ApprovalComment1 | ConvertTo-JSON
```
[[Back to top]](#)