MadelineProto/old_docs/API_docs_v68/constructors/upload_fileCdnRedirect.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

46 lines
1.0 KiB
Markdown

---
title: upload.fileCdnRedirect
description: upload_fileCdnRedirect attributes, type and example
---
## Constructor: upload.fileCdnRedirect
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|dc\_id|[int](../types/int.md) | Yes|
|file\_token|[bytes](../types/bytes.md) | Yes|
|encryption\_key|[bytes](../types/bytes.md) | Yes|
|encryption\_iv|[bytes](../types/bytes.md) | Yes|
### Type: [upload\_File](../types/upload_File.md)
### Example:
```
$upload_fileCdnRedirect = ['_' => 'upload.fileCdnRedirect', 'dc_id' => int, 'file_token' => 'bytes', 'encryption_key' => 'bytes', 'encryption_iv' => 'bytes'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "upload.fileCdnRedirect", "dc_id": int, "file_token": "bytes", "encryption_key": "bytes", "encryption_iv": "bytes"}
```
Or, if you're into Lua:
```
upload_fileCdnRedirect={_='upload.fileCdnRedirect', dc_id=int, file_token='bytes', encryption_key='bytes', encryption_iv='bytes'}
```