2017-10-14 11:50:46 +02:00
|
|
|
---
|
|
|
|
title: recentMeUrlChatInvite
|
|
|
|
description: recentMeUrlChatInvite attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: recentMeUrlChatInvite
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|---------------|----------|
|
|
|
|
|url|[string](../types/string.md) | Yes|
|
2018-02-18 14:18:18 +01:00
|
|
|
|chat\_invite|[ChatInvite](../types/ChatInvite.md) | Optional|
|
2017-10-14 11:50:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [RecentMeUrl](../types/RecentMeUrl.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$recentMeUrlChatInvite = ['_' => 'recentMeUrlChatInvite', 'url' => 'string', 'chat_invite' => ChatInvite];
|
|
|
|
```
|
|
|
|
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_": "recentMeUrlChatInvite", "url": "string", "chat_invite": ChatInvite}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
recentMeUrlChatInvite={_='recentMeUrlChatInvite', url='string', chat_invite=ChatInvite}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|