MadelineProtoDocs/old_docs/API_docs_v105/constructors/upload_webFile.md

43 lines
1.2 KiB
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: upload.webFile
2019-12-27 17:48:04 +01:00
description: Represents a chunk of an [HTTP webfile](https://core.telegram.org/api/files) downloaded through telegram's secure MTProto servers
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: upload.webFile
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Represents a chunk of an [HTTP webfile](https://core.telegram.org/api/files) downloaded through telegram's secure MTProto servers
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|size|[int](../types/int.md) | Yes|File size|
2019-09-13 17:13:55 +02:00
|mime\_type|[string](../types/string.md) | Yes|Mime type|
|file\_type|[storage\_FileType](../types/storage_FileType.md) | Yes|File type|
2019-12-27 17:48:04 +01:00
|mtime|[int](../types/int.md) | Yes|Modified time|
|bytes|[bytes](../types/bytes.md) | Yes|Data|
2019-09-13 17:13:55 +02:00
### Type: [upload\_WebFile](../types/upload_WebFile.md)
### Example:
```php
$upload_webFile = ['_' => 'upload.webFile', 'size' => int, 'mime_type' => 'string', 'file_type' => storage_FileType, 'mtime' => int, 'bytes' => 'bytes'];
```
Or, if you're into Lua:
```lua
upload_webFile={_='upload.webFile', size=int, mime_type='string', file_type=storage_FileType, mtime=int, bytes='bytes'}
```