MadelineProtoDocs/docs/API_docs/constructors/recentMeUrlStickerSet.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

45 lines
914 B
Markdown

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