MadelineProtoDocs/docs/API_docs/constructors/chatInvite.md

1.3 KiB

title description image
chatInvite Chat invite https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatInvite

Back to constructors index

Chat invite

Attributes:

Name Type Required Description
channel Bool Optional Channel?
broadcast Bool Optional Broadcast?
public Bool Optional Public?
megagroup Bool Optional Megagroup?
title string Yes Title
photo Photo Optional Photo
participants_count int Yes Participants count
participants Array of User Optional Participants

Type: ChatInvite

Example:

$chatInvite = ['_' => 'chatInvite', 'channel' => Bool, 'broadcast' => Bool, 'public' => Bool, 'megagroup' => Bool, 'title' => 'string', 'photo' => Photo, 'participants_count' => int, 'participants' => [User, User]];

Or, if you're into Lua:

chatInvite={_='chatInvite', channel=Bool, broadcast=Bool, public=Bool, megagroup=Bool, title='string', photo=Photo, participants_count=int, participants={User}}