add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
---
id: v2025-requested-item-details
title: RequestedItemDetails
pagination_label: RequestedItemDetails
sidebar_label: RequestedItemDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RequestedItemDetails', 'V2025RequestedItemDetails']
slug: /tools/sdk/python/v2025/models/requested-item-details
tags: ['SDK', 'Software Development Kit', 'RequestedItemDetails', 'V2025RequestedItemDetails']
---
# RequestedItemDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **Enum** [ 'ACCESS_PROFILE', 'ENTITLEMENT', 'ROLE' ] | The type of access item requested. | [optional]
**id** | **str** | The id of the access item requested. | [optional]
}
## Example
```python
from sailpoint.v2025.models.requested_item_details import RequestedItemDetails
requested_item_details = RequestedItemDetails(
type='ENTITLEMENT',
id='779c6fd7171540bba1184e5946112c28'
)
```
[[Back to top]](#)