MadelineProtoDocs/old_docs/API_docs_v105/constructors/secureValueError.md

41 lines
894 B
Markdown
Raw Permalink Normal View History

2019-09-13 17:13:55 +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 |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|type|[SecureValueType](../types/SecureValueType.md) | Yes|Type of element which has the issue|
2019-09-13 17:13:55 +02:00
|hash|[bytes](../types/bytes.md) | Yes|Hash|
2019-12-27 17:48:04 +01:00
|text|[string](../types/string.md) | Yes|Error message|
2019-09-13 17:13:55 +02:00
### 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'}
```