mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: v2024-access-review-reassignment
|
||||
title: AccessReviewReassignment
|
||||
pagination_label: AccessReviewReassignment
|
||||
sidebar_label: AccessReviewReassignment
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'AccessReviewReassignment', 'V2024AccessReviewReassignment']
|
||||
slug: /tools/sdk/python/v2024/models/access-review-reassignment
|
||||
tags: ['SDK', 'Software Development Kit', 'AccessReviewReassignment', 'V2024AccessReviewReassignment']
|
||||
---
|
||||
|
||||
# AccessReviewReassignment
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**reassign** | [**[]ReassignReference**](reassign-reference) | | [required]
|
||||
**reassign_to** | **str** | The ID of the identity to which the certification is reassigned | [required]
|
||||
**reason** | **str** | The reason comment for why the reassign was made | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.access_review_reassignment import AccessReviewReassignment
|
||||
|
||||
access_review_reassignment = AccessReviewReassignment(
|
||||
reassign=[
|
||||
sailpoint.v2024.models.reassign_reference.ReassignReference(
|
||||
id = 'ef38f94347e94562b5bb8424a56397d8',
|
||||
type = 'ITEM', )
|
||||
],
|
||||
reassign_to='ef38f94347e94562b5bb8424a56397d8',
|
||||
reason='reassigned for some reason'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user