NotifyPeer
- class pyrogram.raw.base.NotifyPeer
Object defines the set of users and/or groups that generate notifications.
- Constructors:
This base type has 5 constructors available.
Channel notification settings
Notifications generated by all groups.
Notifications generated by a topic in a forum.
Notifications generated by a certain user or group.
Notifications generated by all users.
TL Schema
notifyPeer#9fd40bd8
peer:Peer
= NotifyPeer
Parameter Tree
NotifyPeer
└── peer →
Peer├──
PeerUser│ └── user_id →
long├──
PeerChat│ └── chat_id →
long└──
PeerChannel└── channel_id →
longExample
NotifyPeer(
peer=PeerUser(user_id=0),
)