MadelineProto/docs/TD_docs/constructors/inputFileId.md

45 lines
649 B
Markdown
Raw Normal View History

---
title: inputFileId
description: File defined by its id
---
## Constructor: inputFileId
[Back to constructors index](index.md)
File defined by its id
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|id|[int](../types/int.md) | Yes|Unique file identifier|
### Type: [InputFile](../types/InputFile.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$inputFileId = ['_' => 'inputFileId', 'id' => int];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "inputFileId", "id": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
inputFileId={_='inputFileId', id=int}
```