starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-error-message
title: ErrorMessage
pagination_label: ErrorMessage
sidebar_label: ErrorMessage
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ErrorMessage', 'BetaErrorMessage']
slug: /tools/sdk/python/beta/models/error-message
tags: ['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
```python
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]](#)