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,35 @@
---
id: v2024-identity-compare-response
title: IdentityCompareResponse
pagination_label: IdentityCompareResponse
sidebar_label: IdentityCompareResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentityCompareResponse', 'V2024IdentityCompareResponse']
slug: /tools/sdk/python/v2024/models/identity-compare-response
tags: ['SDK', 'Software Development Kit', 'IdentityCompareResponse', 'V2024IdentityCompareResponse']
---
# IdentityCompareResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**access_item_diff** | **map[string]object** | Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check. | [optional]
}
## Example
```python
from sailpoint.v2024.models.identity_compare_response import IdentityCompareResponse
identity_compare_response = IdentityCompareResponse(
access_item_diff={
'key' : None
}
)
```
[[Back to top]](#)