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.sources.models.loadaccountstask_task_messages_inner import LoadaccountstaskTaskMessagesInner

loadaccountstask_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]