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,38 @@
---
id: beta-account-request-info
title: AccountRequestInfo
pagination_label: AccountRequestInfo
sidebar_label: AccountRequestInfo
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccountRequestInfo', 'BetaAccountRequestInfo']
slug: /tools/sdk/python/beta/models/account-request-info
tags: ['SDK', 'Software Development Kit', 'AccountRequestInfo', 'BetaAccountRequestInfo']
---
# AccountRequestInfo
If an account activity item is associated with an access request, captures details of that request.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**requested_object_id** | **str** | Id of requested object | [optional]
**requested_object_name** | **str** | Human-readable name of requested object | [optional]
**requested_object_type** | [**RequestableObjectType**](requestable-object-type) | | [optional]
}
## Example
```python
from sailpoint.beta.models.account_request_info import AccountRequestInfo
account_request_info = AccountRequestInfo(
requested_object_id='2c91808563ef85690164001c31140c0c',
requested_object_name='Treasury Analyst',
requested_object_type='ACCESS_PROFILE'
)
```
[[Back to top]](#)