MadelineProtoDocs/docs/API_docs/constructors/recentMeUrlUnknown.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
782 B
Markdown

---
title: recentMeUrlUnknown
description: Recent me URL unknown
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: recentMeUrlUnknown
[Back to constructors index](index.md)
Recent me URL unknown
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL|
### Type: [RecentMeUrl](../types/RecentMeUrl.md)
### Example:
```php
$recentMeUrlUnknown = ['_' => 'recentMeUrlUnknown', 'url' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "recentMeUrlUnknown", "url": "string"}
```
Or, if you're into Lua:
```lua
recentMeUrlUnknown={_='recentMeUrlUnknown', url='string'}
```