Update python SDK docs: 16633304233

This commit is contained in:
developer-relations-sp
2025-07-30 20:42:39 +00:00
parent 5d76be1d9d
commit cfdbd8d149
37 changed files with 2482 additions and 594 deletions

View File

@@ -0,0 +1,38 @@
---
id: v2025-approval-attributes-request
title: ApprovalAttributesRequest
pagination_label: ApprovalAttributesRequest
sidebar_label: ApprovalAttributesRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ApprovalAttributesRequest', 'V2025ApprovalAttributesRequest']
slug: /tools/sdk/python/v2025/models/approval-attributes-request
tags: ['SDK', 'Software Development Kit', 'ApprovalAttributesRequest', 'V2025ApprovalAttributesRequest']
---
# ApprovalAttributesRequest
Approval Attributes Request
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**additional_attributes** | **map[string]str** | Additional attributes as key-value pairs that are not part of the standard schema but can be included for custom data. | [optional]
**comment** | **str** | Comment associated with the request. | [optional]
**remove_attribute_keys** | **[]str** | List of attribute keys to be removed. | [optional]
}
## Example
```python
from sailpoint.v2025.models.approval_attributes_request import ApprovalAttributesRequest
approval_attributes_request = ApprovalAttributesRequest(
additional_attributes={additionalProp1=string, additionalProp2=string, additionalProp3=string},
comment='comment',
remove_attribute_keys=[string]
)
```
[[Back to top]](#)