adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: error-message-dto
title: ErrorMessageDto
pagination_label: ErrorMessageDto
sidebar_label: ErrorMessageDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ErrorMessageDto']
slug: /tools/sdk/powershell/v2024/models/error-message-dto
tags: ['SDK', 'Software Development Kit', 'ErrorMessageDto']
---
# ErrorMessageDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Locale** | Pointer to **String** | The locale for the message text, a BCP 47 language tag. | [optional]
**LocaleOrigin** | Pointer to [**LocaleOrigin**](locale-origin) | | [optional]
**Text** | Pointer to **String** | Actual text of the error message in the indicated locale. | [optional]
## Examples
- Prepare the resource
```powershell
$ErrorMessageDto = Initialize-PSSailpoint.V2024ErrorMessageDto -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]](#)