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: beta-reassign-reference
title: ReassignReference
pagination_label: ReassignReference
sidebar_label: ReassignReference
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ReassignReference', 'BetaReassignReference']
slug: /tools/sdk/python/beta/models/reassign-reference
tags: ['SDK', 'Software Development Kit', 'ReassignReference', 'BetaReassignReference']
---
# ReassignReference
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The ID of item or identity being reassigned. | [required]
**type** | **Enum** [ 'TARGET_SUMMARY', 'ITEM', 'IDENTITY_SUMMARY' ] | The type of item or identity being reassigned. | [required]
}
## Example
```python
from sailpoint.beta.models.reassign_reference import ReassignReference
reassign_reference = ReassignReference(
id='ef38f94347e94562b5bb8424a56397d8',
type='ITEM'
)
```
[[Back to top]](#)