mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
31 lines
710 B
Markdown
31 lines
710 B
Markdown
---
|
|
title: "recentMeUrlChat"
|
|
description: "Recent t.me link to a chat"
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: recentMeUrlChat
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
Recent t.me link to a chat
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|url|[string](/API_docs/types/string.html) | Yes|t.me URL|
|
|
|chat\_id|[long](/API_docs/types/long.html) | Yes|Chat ID|
|
|
|
|
|
|
|
|
### Type: [RecentMeUrl](/API_docs/types/RecentMeUrl.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$recentMeUrlChat = ['_' => 'recentMeUrlChat', 'url' => 'string', 'chat_id' => long];
|
|
```
|