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

966 B

title description image
recentMeUrlChatInvite Recent me URL chat invite https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: recentMeUrlChatInvite

Back to constructors index

Recent me URL chat invite

Attributes:

Name Type Required Description
url string Yes URL
chat_invite ChatInvite Optional Chat invite

Type: RecentMeUrl

Example:

$recentMeUrlChatInvite = ['_' => 'recentMeUrlChatInvite', 'url' => 'string', 'chat_invite' => ChatInvite];

PWRTelegram json-encoded version:

{"_": "recentMeUrlChatInvite", "url": "string", "chat_invite": ChatInvite}

Or, if you're into Lua:

recentMeUrlChatInvite={_='recentMeUrlChatInvite', url='string', chat_invite=ChatInvite}