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: beta-cancelled-request-details
title: CancelledRequestDetails
pagination_label: CancelledRequestDetails
sidebar_label: CancelledRequestDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CancelledRequestDetails', 'BetaCancelledRequestDetails']
slug: /tools/sdk/powershell/beta/models/cancelled-request-details
tags: ['SDK', 'Software Development Kit', 'CancelledRequestDetails', 'BetaCancelledRequestDetails']
---
# CancelledRequestDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Comment** | Pointer to **String** | Comment made by the owner when cancelling the associated request. | [optional]
**Owner** | Pointer to [**OwnerDto**](owner-dto) | | [optional]
**Modified** | Pointer to **System.DateTime** | Date comment was added by the owner when cancelling the associated request. | [optional]
## Examples
- Prepare the resource
```powershell
$CancelledRequestDetails = Initialize-PSSailpoint.BetaCancelledRequestDetails -Comment This request must be cancelled. `
-Owner null `
-Modified 2019-12-20T09:17:12.192Z
```
- Convert the resource to JSON
```powershell
$CancelledRequestDetails | ConvertTo-JSON
```
[[Back to top]](#)