MadelineProtoDocs/old_docs/API_docs_v91/constructors/chatParticipantsForbidden.md
2019-03-08 13:49:23 +01:00

1.0 KiB

title description image
chatParticipantsForbidden Chat participants forbidden https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatParticipantsForbidden

Back to constructors index

Chat participants forbidden

Attributes:

Name Type Required Description
chat_id int Yes Chat ID
self_participant ChatParticipant Optional Self participant

Type: ChatParticipants

Example:

$chatParticipantsForbidden = ['_' => 'chatParticipantsForbidden', 'chat_id' => int, 'self_participant' => ChatParticipant];

PWRTelegram json-encoded version:

{"_": "chatParticipantsForbidden", "chat_id": int, "self_participant": ChatParticipant}

Or, if you're into Lua:

chatParticipantsForbidden={_='chatParticipantsForbidden', chat_id=int, self_participant=ChatParticipant}