MadelineProto/old_docs/API_docs_v68/constructors/upload_fileCdnRedirect.md

46 lines
1.0 KiB
Markdown
Raw Normal View History

2017-07-23 17:44:01 +02:00
---
title: upload.fileCdnRedirect
description: upload_fileCdnRedirect attributes, type and example
---
## Constructor: upload.fileCdnRedirect
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
2017-07-23 17:44:01 +02:00
|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'}
```