41 lines
736 B
Markdown
41 lines
736 B
Markdown
|
---
|
||
|
title: inputFileBig
|
||
|
description: File big
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: inputFileBig
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
File big
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|id|[long](../types/long.md) | Yes|ID|
|
||
|
|parts|[int](../types/int.md) | Yes|Parts|
|
||
|
|name|[string](../types/string.md) | Yes|Name|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputFile](../types/InputFile.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$inputFileBig = ['_' => 'inputFileBig', 'id' => long, 'parts' => int, 'name' => 'string'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
inputFileBig={_='inputFileBig', id=long, parts=int, name='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|