1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
secureValueErrorFiles | Secure value error files | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: secureValueErrorFiles
Secure value error files
Attributes:
Name | Type | Required | Description |
---|---|---|---|
type | SecureValueType | Yes | Type |
file_hash | Array of bytes | Yes | File hash |
text | string | Yes | Text |
Type: SecureValueError
Example:
$secureValueErrorFiles = ['_' => 'secureValueErrorFiles', 'type' => SecureValueType, 'file_hash' => ['bytes', 'bytes'], 'text' => 'string'];
PWRTelegram json-encoded version:
{"_": "secureValueErrorFiles", "type": SecureValueType, "file_hash": [{"_": "bytes", "bytes":"base64 encoded bytes"}], "text": "string"}
Or, if you're into Lua:
secureValueErrorFiles={_='secureValueErrorFiles', type=SecureValueType, file_hash={'bytes'}, text='string'}