1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 02:26:55 +01:00
MadelineProto/docs/TD_docs/constructors/updateFileGenerationFinish.md

45 lines
766 B
Markdown
Raw Normal View History

---
title: updateFileGenerationFinish
description: File generation is finished
---
## Constructor: updateFileGenerationFinish
[Back to constructors index](index.md)
File generation is finished
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|file|[file](../types/file.md) | Yes|Generated file|
### Type: [Update](../types/Update.md)
### Example:
```
$updateFileGenerationFinish = ['_' => 'updateFileGenerationFinish', 'file' => file, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"updateFileGenerationFinish","file":"file"}
```
Or, if you're into Lua:
```
updateFileGenerationFinish={_='updateFileGenerationFinish', file=file, }
```