InputNotifyPeer

class pyrogram.raw.types.InputNotifyPeer

Notifications generated by a certain user or group.

Constructor of InputNotifyPeer.

Details:
  • Layer: 223

  • ID: B8BC5B0C

Parameters:

peer (InputPeer) – User or group

TL Schema

inputNotifyPeer#b8bc5b0c
peer:InputPeer

= InputNotifyPeer

Parameter Tree

InputNotifyPeer
└── peerInputPeer
├── InputPeerEmpty
├── InputPeerSelf
├── InputPeerChat
│ └── chat_idlong
├── InputPeerUser
│ ├── user_idlong
│ └── access_hashlong
│ ├── channel_idlong
│ └── access_hashlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── user_idlong
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ ├── InputPeerUser
│ ├── InputPeerChannel
├── msg_idint
└── channel_idlong

Example

InputNotifyPeer(
    peer=await app.resolve_peer(chat_id),
)