mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 11:27:52 +01:00
36 lines
541 B
Markdown
36 lines
541 B
Markdown
|
---
|
||
|
title: upload.cdnFile
|
||
|
description: upload_cdnFile attributes, type and example
|
||
|
---
|
||
|
## Constructor: upload.cdnFile
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|bytes|[bytes](../types/bytes.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [upload\_CdnFile](../types/upload_CdnFile.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$upload_cdnFile = ['_' => 'upload.cdnFile', 'bytes' => bytes, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
upload_cdnFile={_='upload.cdnFile', bytes=bytes, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|