add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2025-error-message-dto
title: ErrorMessageDto
pagination_label: ErrorMessageDto
sidebar_label: ErrorMessageDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ErrorMessageDto', 'V2025ErrorMessageDto']
slug: /tools/sdk/powershell/v2025/models/error-message-dto
tags: ['SDK', 'Software Development Kit', 'ErrorMessageDto', 'V2025ErrorMessageDto']
---
# ErrorMessageDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Locale** | **String** | The locale for the message text, a BCP 47 language tag. | [optional]
**LocaleOrigin** | [**LocaleOrigin**](locale-origin) | | [optional]
**Text** | **String** | Actual text of the error message in the indicated locale. | [optional]
## Examples
- Prepare the resource
```powershell
$ErrorMessageDto = Initialize-PSSailpoint.V2025ErrorMessageDto -Locale en-US `
-LocaleOrigin null `
-Text The request was syntactically correct but its content is semantically invalid.
```
- Convert the resource to JSON
```powershell
$ErrorMessageDto | ConvertTo-JSON
```
[[Back to top]](#)