Skip to main content

JitactivationhistorydocumentFrictionsInner

Properties

NameTypeDescriptionNotes
typestrType of friction control.[optional]
bypass_allowedboolWhether the user had permission to bypass this friction.[optional] [default to False]
submitted_datastrData submitted by the user to satisfy this friction (e.g. ticket ID, justification text).[optional]
statusstrCompletion status of this friction item.[optional]
}

Example

from sailpoint.jit_activations.models.jitactivationhistorydocument_frictions_inner import JitactivationhistorydocumentFrictionsInner

jitactivationhistorydocument_frictions_inner = JitactivationhistorydocumentFrictionsInner(
type='TICKET',
bypass_allowed=False,
submitted_data='INC0012345',
status='COMPLETE'
)

[Back to top]