2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: help.recentMeUrls
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Recent t.me URLs
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: help.recentMeUrls
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Recent t.me URLs
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### 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}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|