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,45 @@
---
id: v2024-approval-item-details
title: ApprovalItemDetails
pagination_label: ApprovalItemDetails
sidebar_label: ApprovalItemDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ApprovalItemDetails', 'V2024ApprovalItemDetails']
slug: /tools/sdk/python/v2024/models/approval-item-details
tags: ['SDK', 'Software Development Kit', 'ApprovalItemDetails', 'V2024ApprovalItemDetails']
---
# ApprovalItemDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The approval item's ID | [optional]
**account** | **str** | The account referenced by the approval item | [optional]
**application** | **str** | The name of the application/source | [optional]
**name** | **str** | The attribute's name | [optional]
**operation** | **str** | The attribute's operation | [optional]
**value** | **str** | The attribute's value | [optional]
**state** | [**WorkItemState**](work-item-state) | | [optional]
}
## Example
```python
from sailpoint.v2024.models.approval_item_details import ApprovalItemDetails
approval_item_details = ApprovalItemDetails(
id='2c9180835d2e5168015d32f890ca1581',
account='john.smith',
application='Active Directory',
name='emailAddress',
operation='update',
value='a@b.com',
state=
)
```
[[Back to top]](#)