MadelineProtoDocs/docs/API_docs/constructors/inputSecureValue.md

46 lines
2.5 KiB
Markdown
Raw Normal View History

2018-06-29 13:59:08 +02:00
---
title: inputSecureValue
2019-12-27 17:48:04 +01:00
description: Secure value, [for more info see the passport docs »](https://core.telegram.org/passport/encryption#encryption)
2018-06-29 13:59:08 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputSecureValue
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Secure value, [for more info see the passport docs »](https://core.telegram.org/passport/encryption#encryption)
2018-12-26 02:56:50 +01:00
2018-06-29 13:59:08 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|type|[SecureValueType](../types/SecureValueType.md) | Yes|Secure [passport](https://core.telegram.org/passport) value type|
|data|[SecureData](../types/SecureData.md) | Optional|Encrypted [Telegram Passport](https://core.telegram.org/passport) element data|
|front\_side|[InputSecureFile](../types/InputSecureFile.md) | Optional|Encrypted [passport](https://core.telegram.org/passport) file with the front side of the document|
|reverse\_side|[InputSecureFile](../types/InputSecureFile.md) | Optional|Encrypted [passport](https://core.telegram.org/passport) file with the reverse side of the document|
|selfie|[InputSecureFile](../types/InputSecureFile.md) | Optional|Encrypted [passport](https://core.telegram.org/passport) file with a selfie of the user holding the document|
2020-06-16 17:50:25 +02:00
|translation|Array of [InputSecureFile](../types/InputSecureFile.md) | Optional|Array of encrypted [passport](https://core.telegram.org/passport) files with translated versions of the provided documents|
|files|Array of [InputSecureFile](../types/InputSecureFile.md) | Optional|Array of encrypted [passport](https://core.telegram.org/passport) files with photos the of the documents|
2019-12-27 17:48:04 +01:00
|plain\_data|[SecurePlainData](../types/SecurePlainData.md) | Optional|Plaintext verified [passport](https://core.telegram.org/passport) data|
2018-06-29 13:59:08 +02:00
### Type: [InputSecureValue](../types/InputSecureValue.md)
### Example:
```php
2018-12-26 02:56:50 +01:00
$inputSecureValue = ['_' => 'inputSecureValue', 'type' => SecureValueType, 'data' => SecureData, 'front_side' => InputSecureFile, 'reverse_side' => InputSecureFile, 'selfie' => InputSecureFile, 'translation' => [InputSecureFile, InputSecureFile], 'files' => [InputSecureFile, InputSecureFile], 'plain_data' => SecurePlainData];
2018-06-29 13:59:08 +02:00
```
Or, if you're into Lua:
2018-06-29 13:59:08 +02:00
```lua
2018-12-26 02:56:50 +01:00
inputSecureValue={_='inputSecureValue', type=SecureValueType, data=SecureData, front_side=InputSecureFile, reverse_side=InputSecureFile, selfie=InputSecureFile, translation={InputSecureFile}, files={InputSecureFile}, plain_data=SecurePlainData}
2018-06-29 13:59:08 +02:00
```