1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 15:46:55 +01:00
MadelineProto/docs/TD_docs/constructors/notificationSettingsForChat.md
2017-07-23 16:11:02 +02:00

867 B

title description
notificationSettingsForChat Notification settings applied to particular chat

Constructor: notificationSettingsForChat

Back to constructors index

Notification settings applied to particular chat

Attributes:

Name Type Required Description
chat_id long Yes Chat identifier

Type: NotificationSettingsScope

Example:

$notificationSettingsForChat = ['_' => 'notificationSettingsForChat', 'chat_id' => long, ];

PWRTelegram json-encoded version:

{"_":"notificationSettingsForChat","chat_id":"long"}

Or, if you're into Lua:

notificationSettingsForChat={_='notificationSettingsForChat', chat_id=long, }