Skip to main content

LoadAccountsTaskTaskMessagesInner

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.beta.models.load_accounts_task_task_messages_inner import LoadAccountsTaskTaskMessagesInner

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

[Back to top]