MadelineProtoDocs/docs/API_docs/constructors/inputSecureValue.md

46 lines
1.6 KiB
Markdown
Raw Normal View History

2018-06-29 13:59:08 +02:00
---
title: inputSecureValue
2018-12-26 02:56:50 +01:00
description: Secure value
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)
2018-12-26 02:56:50 +01:00
Secure value
2018-06-29 13:59:08 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|type|[SecureValueType](../types/SecureValueType.md) | Yes|Type|
|data|[SecureData](../types/SecureData.md) | Optional|Data|
|front\_side|[InputSecureFile](../types/InputSecureFile.md) | Optional|Front side|
|reverse\_side|[InputSecureFile](../types/InputSecureFile.md) | Optional|Reverse side|
|selfie|[InputSecureFile](../types/InputSecureFile.md) | Optional|Selfie|
|translation|Array of [InputSecureFile](../types/InputSecureFile.md) | Optional|Translation|
|files|Array of [InputSecureFile](../types/InputSecureFile.md) | Optional|Files|
|plain\_data|[SecurePlainData](../types/SecurePlainData.md) | Optional|Plain 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
```