2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
title: messageActionChatMigrateTo
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Indicates the chat was [migrated](https://core.telegram.org/api/channel) to the specified supergroup
|
2019-06-23 13:07:51 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: messageActionChatMigrateTo
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Indicates the chat was [migrated](https://core.telegram.org/api/channel) to the specified supergroup
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|channel\_id|[int](../types/int.md) | Yes|The supergroup it was migrated to|
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [MessageAction](../types/MessageAction.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$messageActionChatMigrateTo = ['_' => 'messageActionChatMigrateTo', 'channel_id' => int];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
messageActionChatMigrateTo={_='messageActionChatMigrateTo', channel_id=int}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|