MadelineProtoDocs/docs/API_docs/constructors/secureValueErrorSelfie.md

46 lines
1.1 KiB
Markdown

---
title: secureValueErrorSelfie
description: secureValueErrorSelfie attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: secureValueErrorSelfie
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|type|[SecureValueType](../types/SecureValueType.md) | Yes|
|file\_hash|[bytes](../types/bytes.md) | Yes|
|text|[string](../types/string.md) | Yes|
### Type: [SecureValueError](../types/SecureValueError.md)
### Example:
```
$secureValueErrorSelfie = ['_' => 'secureValueErrorSelfie', 'type' => SecureValueType, 'file_hash' => 'bytes', 'text' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "secureValueErrorSelfie", "type": SecureValueType, "file_hash": {"_": "bytes", "bytes":"base64 encoded bytes"}, "text": "string"}
```
Or, if you're into Lua:
```
secureValueErrorSelfie={_='secureValueErrorSelfie', type=SecureValueType, file_hash='bytes', text='string'}
```