Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccessReviewReassignment.md
2025-07-25 19:23:51 +00:00

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
python
Python
sdk
AccessReviewReassignment
V2025AccessReviewReassignment
/tools/sdk/python/v2025/models/access-review-reassignment
SDK
Software Development Kit
AccessReviewReassignment
V2025AccessReviewReassignment

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'
)

[Back to top]