2017-04-21 13:27:04 +02:00
|
|
|
---
|
|
|
|
title: inputEncryptedFileUploaded
|
|
|
|
description: inputEncryptedFileUploaded attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: inputEncryptedFileUploaded
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
|
|
|
|id|[long](../types/long.md) | Yes|
|
|
|
|
|parts|[int](../types/int.md) | Yes|
|
|
|
|
|md5\_checksum|[string](../types/string.md) | Yes|
|
|
|
|
|key\_fingerprint|[int](../types/int.md) | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputEncryptedFile](../types/InputEncryptedFile.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$inputEncryptedFileUploaded = ['_' => 'inputEncryptedFileUploaded', 'id' => long, 'parts' => int, 'md5_checksum' => string, 'key_fingerprint' => int, ];
|
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"inputEncryptedFileUploaded","id":"long","parts":"int","md5_checksum":"string","key_fingerprint":"int"}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-04-21 13:27:04 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
inputEncryptedFileUploaded={_='inputEncryptedFileUploaded', id=long, parts=int, md5_checksum=string, key_fingerprint=int, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|