Skip to main content

Violationreassigninput

Data needed to reassign a policy violation to a new owner.

Properties

NameTypeDescriptionNotes
reassign_toReassigninput[required]
commentsstrOptional comments explaining the reassignment.[optional]
}

Example

from sailpoint.sod_violations.models.violationreassigninput import Violationreassigninput

violationreassigninput = Violationreassigninput(
reassign_to=sailpoint.sod_violations.models.reassigninput.Reassigninput(
assignee_id = '3e07886555ed43cfb83c85c58d2016e6',
assignee_type = 'IDENTITY', ),
comments='some comments about the reassignment'
)

[Back to top]