mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.3 KiB
1.3 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-access-review-reassignment | AccessReviewReassignment | AccessReviewReassignment | AccessReviewReassignment | pythonsdk |
|
/tools/sdk/python/v2025/models/access-review-reassignment |
|
AccessReviewReassignment
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| reassign | []ReassignReference | [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
from sailpoint.v2025.models.access_review_reassignment import AccessReviewReassignment
access_review_reassignment = AccessReviewReassignment(
reassign=[
sailpoint.v2025.models.reassign_reference.Reassign Reference(
id = 'ef38f94347e94562b5bb8424a56397d8',
type = 'ITEM', )
],
reassign_to='ef38f94347e94562b5bb8424a56397d8',
reason='reassigned for some reason'
)