MadelineProtoDocs/old_docs/API_docs_v105/constructors/channelParticipantSelf.md
2019-09-13 17:13:55 +02:00

868 B

title description image
channelParticipantSelf Channel participant self https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channelParticipantSelf

Back to constructors index

Channel participant self

Attributes:

Name Type Required Description
user_id int Yes User ID
inviter_id int Yes Inviter ID
date int Yes Date

Type: ChannelParticipant

Example:

$channelParticipantSelf = ['_' => 'channelParticipantSelf', 'user_id' => int, 'inviter_id' => int, 'date' => int];

Or, if you're into Lua:

channelParticipantSelf={_='channelParticipantSelf', user_id=int, inviter_id=int, date=int}