PaidReactionPrivacyPeer

class pyrogram.raw.types.PaidReactionPrivacyPeer

Send paid reactions as the specified peer, fetched using channels.getSendAs.

Constructor of PaidReactionPrivacy.

Details:
  • Layer: 223

  • ID: DC6CFCF0

Parameters:

peer (InputPeer) – The peer to send reactions as.

TL Schema

paidReactionPrivacyPeer#dc6cfcf0
peer:InputPeer

= PaidReactionPrivacy

Parameter Tree

PaidReactionPrivacyPeer
└── 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

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