MadelineProtoDocs/old_docs/API_docs_v53/constructors/chatInvite.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

1.1 KiB

title description image
chatInvite chatInvite attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatInvite

Back to constructors index

Attributes:

Name Type Required
channel Bool Optional
broadcast Bool Optional
public Bool Optional
megagroup Bool Optional
title string Yes

Type: ChatInvite

Example:

$chatInvite = ['_' => 'chatInvite', 'channel' => Bool, 'broadcast' => Bool, 'public' => Bool, 'megagroup' => Bool, 'title' => 'string'];

PWRTelegram json-encoded version:

{"_": "chatInvite", "channel": Bool, "broadcast": Bool, "public": Bool, "megagroup": Bool, "title": "string"}

Or, if you're into Lua:

chatInvite={_='chatInvite', channel=Bool, broadcast=Bool, public=Bool, megagroup=Bool, title='string'}