--- 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} ```