Skip to main content

ErrorMessage

Properties

NameTypeDescriptionNotes
localestrLocale is the current Locale[optional]
locale_originstrLocaleOrigin holds possible values of how the locale was selected[optional]
textstrText is the actual text of the error message[optional]
}

Example

from sailpoint.v2024.models.error_message import ErrorMessage

error_message = ErrorMessage(
locale='en-US',
locale_origin='DEFAULT',
text='This is an error'
)

[Back to top]