adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: 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]](#)