MadelineProto/docs/TD_docs/constructors/updateGroup.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

45 lines
703 B
Markdown

---
title: updateGroup
description: Some data about a group has been changed
---
## Constructor: updateGroup
[Back to constructors index](index.md)
Some data about a group has been changed
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|group|[group](../types/group.md) | Yes|New data about the group|
### Type: [Update](../types/Update.md)
### Example:
```
$updateGroup = ['_' => 'updateGroup', 'group' => group];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "updateGroup", "group": group}
```
Or, if you're into Lua:
```
updateGroup={_='updateGroup', group=group}
```