mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 10:16:55 +01:00
706 B
706 B
title | description |
---|---|
updateGroup | Some data about a group has been changed |
Constructor: updateGroup
Some data about a group has been changed
Attributes:
Name | Type | Required | Description |
---|---|---|---|
group | group | Yes | New data about the group |
Type: Update
Example:
$updateGroup = ['_' => 'updateGroup', 'group' => group, ];
PWRTelegram json-encoded version:
{"_":"updateGroup","group":"group"}
Or, if you're into Lua:
updateGroup={_='updateGroup', group=group, }