MadelineProtoDocs/docs/API_docs/constructors/recentMeUrlChat.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
850 B
Markdown

---
title: recentMeUrlChat
description: Recent me URL chat
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: recentMeUrlChat
[Back to constructors index](index.md)
Recent me URL chat
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL|
|chat\_id|[int](../types/int.md) | Yes|Chat ID|
### Type: [RecentMeUrl](../types/RecentMeUrl.md)
### Example:
```php
$recentMeUrlChat = ['_' => 'recentMeUrlChat', 'url' => 'string', 'chat_id' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "recentMeUrlChat", "url": "string", "chat_id": int}
```
Or, if you're into Lua:
```lua
recentMeUrlChat={_='recentMeUrlChat', url='string', chat_id=int}
```