MadelineProto/old_docs/API_docs_v72/constructors/recentMeUrlChatInvite.md
2017-11-15 12:41:58 +00:00

839 B

title description
recentMeUrlChatInvite recentMeUrlChatInvite attributes, type and example

Constructor: recentMeUrlChatInvite

Back to constructors index

Attributes:

Name Type Required
url string Yes
chat_invite ChatInvite Yes

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}