MadelineProtoDocs/old_docs/API_docs_v105/constructors/encryptedFile.md

43 lines
957 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: encryptedFile
description: Encrypted file
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: encryptedFile
[Back to constructors index](index.md)
Encrypted file
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[long](../types/long.md) | Yes|ID|
|access\_hash|[long](../types/long.md) | Yes|Access hash|
|size|[int](../types/int.md) | Yes|Size|
|dc\_id|[int](../types/int.md) | Yes|DC ID|
|key\_fingerprint|[int](../types/int.md) | Yes|Key fingerprint|
### Type: [EncryptedFile](../types/EncryptedFile.md)
### Example:
```php
$encryptedFile = ['_' => 'encryptedFile', 'id' => long, 'access_hash' => long, 'size' => int, 'dc_id' => int, 'key_fingerprint' => int];
```
Or, if you're into Lua:
```lua
encryptedFile={_='encryptedFile', id=long, access_hash=long, size=int, dc_id=int, key_fingerprint=int}
```