MessageActionPaidMessagesRefunded

class pyrogram.raw.types.MessageActionPaidMessagesRefunded

Sent from peer A to B, indicates that A refunded all stars B previously paid to send messages to A, see here » for more info on paid messages.

Constructor of MessageAction.

Details:
  • Layer: 223

  • ID: AC1F1FCD

Parameters:
  • count (int 32-bit) – Number of paid messages affected by the refund.

  • stars (int 64-bit) – Number of refunded stars.

TL Schema

messageActionPaidMessagesRefunded#ac1f1fcd
count:int
stars:long

= MessageAction

Parameter Tree

MessageActionPaidMessagesRefunded
├── countint
└── starslong

Example

MessageActionPaidMessagesRefunded(
    count=0,
    stars=0,
)