MadelineProtoDocs/old_docs/API_docs_v43/constructors/recentMeUrlChatInvite.md

40 lines
845 B
Markdown
Raw Permalink Normal View History

2020-09-12 12:47:38 +02:00
---
title: recentMeUrlChatInvite
description: Recent t.me invite link to a chat
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: recentMeUrlChatInvite
[Back to constructors index](index.md)
Recent t.me invite link to a chat
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|t.me URL|
|chat\_invite|[ChatInvite](../types/ChatInvite.md) | Optional|Chat invitation|
### Type: [RecentMeUrl](../types/RecentMeUrl.md)
### Example:
```php
$recentMeUrlChatInvite = ['_' => 'recentMeUrlChatInvite', 'url' => 'string', 'chat_invite' => ChatInvite];
```
Or, if you're into Lua:
```lua
recentMeUrlChatInvite={_='recentMeUrlChatInvite', url='string', chat_invite=ChatInvite}
```