1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
chatInvite | Chat invite | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: chatInvite
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 |
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'}