MadelineProtoDocs/old_docs/API_docs_v105/constructors/secureValueErrorReverseSide.md
2019-09-13 17:13:55 +02:00

41 lines
967 B
Markdown

---
title: secureValueErrorReverseSide
description: Secure value error reverse side
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: secureValueErrorReverseSide
[Back to constructors index](index.md)
Secure value error reverse side
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|type|[SecureValueType](../types/SecureValueType.md) | Yes|Type|
|file\_hash|[bytes](../types/bytes.md) | Yes|File hash|
|text|[string](../types/string.md) | Yes|Text|
### Type: [SecureValueError](../types/SecureValueError.md)
### Example:
```php
$secureValueErrorReverseSide = ['_' => 'secureValueErrorReverseSide', 'type' => SecureValueType, 'file_hash' => 'bytes', 'text' => 'string'];
```
Or, if you're into Lua:
```lua
secureValueErrorReverseSide={_='secureValueErrorReverseSide', type=SecureValueType, file_hash='bytes', text='string'}
```