merge changes from main and pull the latest from python docs

This commit is contained in:
darrell-thobe-sp
2025-03-10 11:34:32 -04:00
3122 changed files with 95404 additions and 24060 deletions

View File

@@ -0,0 +1,33 @@
---
id: result
title: Result
pagination_label: Result
sidebar_label: Result
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Result', 'Result']
slug: /tools/sdk/python/v3/models/result
tags: ['SDK', 'Software Development Kit', 'Result', 'Result']
---
# Result
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **str** | Request result status | [optional]
}
## Example
```python
from sailpoint.v3.models.result import Result
result = Result(
status='Manual Task Created'
)
```
[[Back to top]](#)