MadelineProtoDocs/docs/API_docs/constructors/secureValueError.md

47 lines
1.0 KiB
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01: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|
|hash|[bytes](../types/bytes.md) | Yes|Hash|
|text|[string](../types/string.md) | Yes|Text|
### Type: [SecureValueError](../types/SecureValueError.md)
### Example:
```php
$secureValueError = ['_' => 'secureValueError', 'type' => SecureValueType, 'hash' => 'bytes', 'text' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "secureValueError", "type": SecureValueType, "hash": {"_": "bytes", "bytes":"base64 encoded bytes"}, "text": "string"}
```
Or, if you're into Lua:
```lua
secureValueError={_='secureValueError', type=SecureValueType, hash='bytes', text='string'}
```