MadelineProtoDocs/old_docs/API_docs_v44/constructors/secureValueError.md

41 lines
894 B
Markdown
Raw Permalink Normal View History

2020-10-01 18:05:42 +02:00
---
title: secureValueError
description: Secure value error
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: secureValueError
[Back to constructors index](index.md)
Secure value error
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|type|[SecureValueType](../types/SecureValueType.md) | Yes|Type of element which has the issue|
|hash|[bytes](../types/bytes.md) | Yes|Hash|
|text|[string](../types/string.md) | Yes|Error message|
### Type: [SecureValueError](../types/SecureValueError.md)
### Example:
```php
$secureValueError = ['_' => 'secureValueError', 'type' => SecureValueType, 'hash' => 'bytes', 'text' => 'string'];
```
Or, if you're into Lua:
```lua
secureValueError={_='secureValueError', type=SecureValueType, hash='bytes', text='string'}
```