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-delete202-response
title: Delete202Response
pagination_label: Delete202Response
sidebar_label: Delete202Response
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Delete202Response', 'BetaDelete202Response']
slug: /tools/sdk/python/beta/models/delete202-response
tags: ['SDK', 'Software Development Kit', 'Delete202Response', 'BetaDelete202Response']
---
# Delete202Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **Enum** [ 'TASK_RESULT' ] | Type of object being referenced. | [optional]
**id** | **str** | Task result ID. | [optional]
**name** | **str** | Task result's human-readable display name (this should be null/empty). | [optional]
}
## Example
```python
from sailpoint.beta.models.delete202_response import Delete202Response
delete202_response = Delete202Response(
type='TASK_RESULT',
id='2c91808779ecf55b0179f720942f181a',
name=''
)
```
[[Back to top]](#)