MadelineProtoDocs/docs/API_docs/constructors/secureValueErrorSelfie.md

41 lines
1.4 KiB
Markdown

---
title: secureValueErrorSelfie
description: Represents an issue with the selfie with a document. The error is considered resolved when the file with the selfie changes.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: secureValueErrorSelfie
[Back to constructors index](index.md)
Represents an issue with the selfie with a document. The error is considered resolved when the file with the selfie changes.
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|type|[SecureValueType](../types/SecureValueType.md) | Yes|One of [secureValueTypePassport](../constructors/secureValueTypePassport.md), [secureValueTypeDriverLicense](../constructors/secureValueTypeDriverLicense.md), [secureValueTypeIdentityCard](../constructors/secureValueTypeIdentityCard.md), [secureValueTypeInternalPassport](../constructors/secureValueTypeInternalPassport.md)|
|file\_hash|[bytes](../types/bytes.md) | Yes|File hash|
|text|[string](../types/string.md) | Yes|Error message|
### Type: [SecureValueError](../types/SecureValueError.md)
### Example:
```php
$secureValueErrorSelfie = ['_' => 'secureValueErrorSelfie', 'type' => SecureValueType, 'file_hash' => 'bytes', 'text' => 'string'];
```
Or, if you're into Lua:
```lua
secureValueErrorSelfie={_='secureValueErrorSelfie', type=SecureValueType, file_hash='bytes', text='string'}
```