mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 05:36:56 +01:00
45 lines
763 B
Markdown
45 lines
763 B
Markdown
---
|
|
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];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "updateFileGenerationFinish", "file": file}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
updateFileGenerationFinish={_='updateFileGenerationFinish', file=file}
|
|
|
|
```
|
|
|
|
|