MadelineProtoDocs/docs/API_docs/constructors/inputEncryptedFileUploaded.md

33 lines
1.2 KiB
Markdown
Raw Normal View History

2024-05-01 14:53:46 +02:00
---
title: "inputEncryptedFileUploaded"
description: "Sets new encrypted file saved by parts using upload.saveFilePart method."
nav_exclude: true
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputEncryptedFileUploaded
[Back to constructors index](/API_docs/constructors/index.html)
Sets new encrypted file saved by parts using upload.saveFilePart method.
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[long](/API_docs/types/long.html) | Yes|Random file ID created by client|
|parts|[int](/API_docs/types/int.html) | Yes|Number of saved parts|
|md5\_checksum|[string](/API_docs/types/string.html) | Yes|In case [md5-HASH](https://en.wikipedia.org/wiki/MD5) of the (already encrypted) file was transmitted, file content will be checked prior to use|
|key\_fingerprint|[int](/API_docs/types/int.html) | Yes|32-bit fingerprint of the key used to encrypt a file|
### Type: [InputEncryptedFile](/API_docs/types/InputEncryptedFile.html)
### Example:
```
$inputEncryptedFileUploaded = ['_' => 'inputEncryptedFileUploaded', 'id' => long, 'parts' => int, 'md5_checksum' => 'string', 'key_fingerprint' => int];
```