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.custom_forms.models.errormessage import Errormessage

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

[Back to top]