MadelineProtoDocs/old_docs/API_docs_v105/constructors/secureValueErrorTranslationFiles.md

41 lines
1.0 KiB
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: secureValueErrorTranslationFiles
description: Secure value error translation files
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: secureValueErrorTranslationFiles
[Back to constructors index](index.md)
Secure value error translation files
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|type|[SecureValueType](../types/SecureValueType.md) | Yes|Type|
|file\_hash|Array of [bytes](../types/bytes.md) | Yes|File hash|
|text|[string](../types/string.md) | Yes|Text|
### Type: [SecureValueError](../types/SecureValueError.md)
### Example:
```php
$secureValueErrorTranslationFiles = ['_' => 'secureValueErrorTranslationFiles', 'type' => SecureValueType, 'file_hash' => ['bytes', 'bytes'], 'text' => 'string'];
```
Or, if you're into Lua:
```lua
secureValueErrorTranslationFiles={_='secureValueErrorTranslationFiles', type=SecureValueType, file_hash={'bytes'}, text='string'}
```