MadelineProtoDocs/old_docs/API_docs_v82/constructors/recentMeUrlStickerSet.md

40 lines
810 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: recentMeUrlStickerSet
description: Recent me URL sticker set
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: recentMeUrlStickerSet
[Back to constructors index](index.md)
Recent me URL sticker set
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL|
|set|[StickerSetCovered](../types/StickerSetCovered.md) | Yes|Set|
### Type: [RecentMeUrl](../types/RecentMeUrl.md)
### Example:
```php
$recentMeUrlStickerSet = ['_' => 'recentMeUrlStickerSet', 'url' => 'string', 'set' => StickerSetCovered];
```
Or, if you're into Lua:
```lua
recentMeUrlStickerSet={_='recentMeUrlStickerSet', url='string', set=StickerSetCovered}
```