ReactionsNotifySettings
- class pyrogram.raw.base.ReactionsNotifySettings
Reaction notification settings, see here » for more info.
- Constructors:
This base type has 1 constructor available.
Reaction notification settings, see here » for more info.
- Functions:
This object can be returned by 2 functions.
Get the current reaction notification settings ».
Change the reaction notification settings ».
TL Schema
reactionsNotifySettings#56e34970
flags:#
messages_notify_from:flags.0?ReactionNotificationsFrom
stories_notify_from:flags.1?ReactionNotificationsFrom
sound:NotificationSound
show_previews:Bool
= ReactionsNotifySettings
Parameter Tree
ReactionsNotifySettings
├── messages_notify_from →
ReactionNotificationsFrom (optional)├── stories_notify_from →
ReactionNotificationsFrom (optional)├── sound →
NotificationSound│ ├──
NotificationSoundDefault│ ├──
NotificationSoundNone│ ├──
NotificationSoundLocal│ │ ├── title →
string│ │ └── data →
string│ └── id →
long└── show_previews →
BoolExample
ReactionsNotifySettings(
messages_notify_from=ReactionNotificationsFromContacts(),
stories_notify_from=ReactionNotificationsFromContacts(),
sound=NotificationSoundDefault(),
show_previews=True,
)