MadelineProtoDocs/old_docs/API_docs_v102/constructors/channelAdminLogEventActionChangeLinkedChat.md
2019-12-27 17:48:04 +01:00

40 lines
968 B
Markdown

---
title: channelAdminLogEventActionChangeLinkedChat
description: The linked chat was changed
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelAdminLogEventActionChangeLinkedChat
[Back to constructors index](index.md)
The linked chat was changed
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|prev\_value|[int](../types/int.md) | Yes|Previous linked chat|
|new\_value|[int](../types/int.md) | Yes|New linked chat|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
### Example:
```php
$channelAdminLogEventActionChangeLinkedChat = ['_' => 'channelAdminLogEventActionChangeLinkedChat', 'prev_value' => int, 'new_value' => int];
```
Or, if you're into Lua:
```lua
channelAdminLogEventActionChangeLinkedChat={_='channelAdminLogEventActionChangeLinkedChat', prev_value=int, new_value=int}
```