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-access-request-dynamic-approver1
title: AccessRequestDynamicApprover1
pagination_label: AccessRequestDynamicApprover1
sidebar_label: AccessRequestDynamicApprover1
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccessRequestDynamicApprover1', 'BetaAccessRequestDynamicApprover1']
slug: /tools/sdk/python/beta/models/access-request-dynamic-approver1
tags: ['SDK', 'Software Development Kit', 'AccessRequestDynamicApprover1', 'BetaAccessRequestDynamicApprover1']
---
# AccessRequestDynamicApprover1
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The unique ID of the identity to add to the approver list for the access request. | [required]
**name** | **str** | The name of the identity to add to the approver list for the access request. | [required]
**type** | **Enum** [ 'IDENTITY', 'GOVERNANCE_GROUP' ] | The type of object being referenced. | [required]
}
## Example
```python
from sailpoint.beta.models.access_request_dynamic_approver1 import AccessRequestDynamicApprover1
access_request_dynamic_approver1 = AccessRequestDynamicApprover1(
id='2c91808b6ef1d43e016efba0ce470906',
name='Adam Adams',
type=IDENTITY
)
```
[[Back to top]](#)