Skip to main content

LoadUncorrelatedAccountsTaskTaskMessagesInner

Properties

NameTypeDescriptionNotes
typeEnum [ 'INFO', 'WARN', 'ERROR' ]Type of the message.[optional]
errorboolFlag whether message is an error.[optional] [default to False]
warningboolFlag whether message is a warning.[optional] [default to False]
keystrMessage string identifier.[optional]
localized_textstrMessage context with the locale based language.[optional]
}

Example

from sailpoint.v2024.models.load_uncorrelated_accounts_task_task_messages_inner import LoadUncorrelatedAccountsTaskTaskMessagesInner

load_uncorrelated_accounts_task_task_messages_inner = LoadUncorrelatedAccountsTaskTaskMessagesInner(
type='WARN',
error=False,
warning=True,
key='This correlation failed because the currently running correlation must complete before the next one can start.',
localized_text='This correlation failed because the currently running correlation must complete before the next one can start.'
)

[Back to top]