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

41 lines
895 B
Markdown

---
title: help.recentMeUrls
description: Recent t.me URLs
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: help.recentMeUrls
[Back to constructors index](index.md)
Recent t.me URLs
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|urls|Array of [RecentMeUrl](../types/RecentMeUrl.md) | Yes|URLs|
|chats|Array of [Chat](../types/Chat.md) | Yes|Chats|
|users|Array of [User](../types/User.md) | Yes|Users|
### Type: [help\_RecentMeUrls](../types/help_RecentMeUrls.md)
### Example:
```php
$help_recentMeUrls = ['_' => 'help.recentMeUrls', 'urls' => [RecentMeUrl, RecentMeUrl], 'chats' => [Chat, Chat], 'users' => [User, User]];
```
Or, if you're into Lua:
```lua
help_recentMeUrls={_='help.recentMeUrls', urls={RecentMeUrl}, chats={Chat}, users={User}}
```