starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-task-result-response
title: TaskResultResponse
pagination_label: TaskResultResponse
sidebar_label: TaskResultResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'TaskResultResponse', 'BetaTaskResultResponse']
slug: /tools/sdk/python/beta/models/task-result-response
tags: ['SDK', 'Software Development Kit', 'TaskResultResponse', 'BetaTaskResultResponse']
---
# TaskResultResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **str** | the type of response reference | [optional]
**id** | **str** | the task ID | [optional]
**name** | **str** | the task name (not used in this endpoint, always null) | [optional]
}
## Example
```python
from sailpoint.beta.models.task_result_response import TaskResultResponse
task_result_response = TaskResultResponse(
type='TASK_RESULT',
id='78733556-9ea3-4f59-bf69-e5cd92b011b4',
name='null'
)
```
[[Back to top]](#)