MadelineProto/old_docs/API_docs_v66/constructors/upload_fileCdnRedirect.md

39 lines
869 B
Markdown
Raw Normal View History

2017-06-30 15:36:33 +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 |
|----------|:-------------:|---------:|
|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, ];
```
Or, if you're into Lua:
```
upload_fileCdnRedirect={_='upload.fileCdnRedirect', dc_id=int, file_token=bytes, encryption_key=bytes, encryption_iv=bytes, }
```