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-task-result-dto
title: TaskResultDto
pagination_label: TaskResultDto
sidebar_label: TaskResultDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TaskResultDto']
slug: /tools/sdk/powershell/v2024/models/task-result-dto
tags: ['SDK', 'Software Development Kit', 'TaskResultDto']
---
# TaskResultDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "TASK_RESULT" ] | Task result DTO type. | [optional]
**Id** | Pointer to **String** | Task result ID. | [optional]
**Name** | Pointer to **String** | Task result display name. | [optional]
## Examples
- Prepare the resource
```powershell
$TaskResultDto = Initialize-PSSailpoint.V2024TaskResultDto -Type TASK_RESULT `
-Id 464ae7bf791e49fdb74606a2e4a89635 `
-Name null
```
- Convert the resource to JSON
```powershell
$TaskResultDto | ConvertTo-JSON
```
[[Back to top]](#)