mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user