Skip to main content

ReviewReassign

Properties

NameTypeDescriptionNotes
reassign[]ReassignReference[required]
reassign_tostrThe ID of the identity to which the certification is reassigned[required]
reasonstrThe reason comment for why the reassign was made[required]
}

Example

from sailpoint.v3.models.review_reassign import ReviewReassign

review_reassign = ReviewReassign(
reassign=[
sailpoint.v3.models.reassign_reference.ReassignReference(
id = 'ef38f94347e94562b5bb8424a56397d8',
type = 'ITEM', )
],
reassign_to='ef38f94347e94562b5bb8424a56397d8',
reason='reassigned for some reason'
)

[Back to top]