MadelineProtoDocs/docs/API_docs/constructors/recentMeUrlUser.md

40 lines
737 B
Markdown

---
title: recentMeUrlUser
description: Recent t.me link to a user
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: recentMeUrlUser
[Back to constructors index](index.md)
Recent t.me link to a user
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL|
|user\_id|[int](../types/int.md) | Yes|User ID|
### Type: [RecentMeUrl](../types/RecentMeUrl.md)
### Example:
```php
$recentMeUrlUser = ['_' => 'recentMeUrlUser', 'url' => 'string', 'user_id' => int];
```
Or, if you're into Lua:
```lua
recentMeUrlUser={_='recentMeUrlUser', url='string', user_id=int}
```