mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
31 lines
962 B
Markdown
31 lines
962 B
Markdown
---
|
|
title: "inputEncryptedFileLocation"
|
|
description: "Location of encrypted secret chat file."
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: inputEncryptedFileLocation
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
Location of encrypted secret chat file.
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|id|[long](/API_docs/types/long.html) | Yes|File ID, **id** parameter value from [encryptedFile](../constructors/encryptedFile.html)|
|
|
|access\_hash|[long](/API_docs/types/long.html) | Yes|Checksum, **access\_hash** parameter value from [encryptedFile](../constructors/encryptedFile.html)|
|
|
|
|
|
|
|
|
### Type: [InputFileLocation](/API_docs/types/InputFileLocation.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$inputEncryptedFileLocation = ['_' => 'inputEncryptedFileLocation', 'id' => long, 'access_hash' => long];
|
|
```
|