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,39 @@
---
id: v2024-access-item-diff
title: AccessItemDiff
pagination_label: AccessItemDiff
sidebar_label: AccessItemDiff
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccessItemDiff', 'V2024AccessItemDiff']
slug: /tools/sdk/python/v2024/models/access-item-diff
tags: ['SDK', 'Software Development Kit', 'AccessItemDiff', 'V2024AccessItemDiff']
---
# AccessItemDiff
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | the id of the access item | [optional]
**event_type** | **Enum** [ 'ADD', 'REMOVE' ] | | [optional]
**display_name** | **str** | the display name of the access item | [optional]
**source_name** | **str** | the source name of the access item | [optional]
}
## Example
```python
from sailpoint.v2024.models.access_item_diff import AccessItemDiff
access_item_diff = AccessItemDiff(
id='',
event_type='ADD',
display_name='',
source_name=''
)
```
[[Back to top]](#)