902 B
902 B
title | description | image |
---|---|---|
channelParticipantSelf | Myself | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: channelParticipantSelf
Myself
Attributes:
Name | Type | Required | Description |
---|---|---|---|
user_id | int | Yes | User ID |
inviter_id | int | Yes | User that invited me to the channel/supergroup |
date | int | Yes | When did I join the channel/supergroup |
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}