Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/ErrorMessage.md
2025-02-20 12:59:19 -05:00

937 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-error-message ErrorMessage ErrorMessage ErrorMessage pythonsdk
python
Python
sdk
ErrorMessage
BetaErrorMessage
/tools/sdk/python/beta/models/error-message
SDK
Software Development Kit
ErrorMessage
BetaErrorMessage

ErrorMessage

Properties

Name Type Description Notes
locale str Locale is the current Locale [optional]
locale_origin str LocaleOrigin holds possible values of how the locale was selected [optional]
text str Text is the actual text of the error message [optional]
}

Example

from sailpoint.beta.models.error_message import ErrorMessage

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

[Back to top]