1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-02 23:27:46 +01:00
MadelineProto/docs/API_docs/constructors/recentMeUrlUser.md
2017-10-14 09:50:46 +00:00

740 B

title description
recentMeUrlUser recentMeUrlUser attributes, type and example

Constructor: recentMeUrlUser

Back to constructors index

Attributes:

Name Type Required
url string Yes
user_id int Yes

Type: RecentMeUrl

Example:

$recentMeUrlUser = ['_' => 'recentMeUrlUser', 'url' => 'string', 'user_id' => int];

PWRTelegram json-encoded version:

{"_": "recentMeUrlUser", "url": "string", "user_id": int}

Or, if you're into Lua:

recentMeUrlUser={_='recentMeUrlUser', url='string', user_id=int}