MadelineProtoDocs/old_docs/API_docs_v105/constructors/messageActionChannelMigrateFrom.md

40 lines
1011 B
Markdown
Raw Permalink Normal View History

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