GroupCallDonor

class pyrogram.raw.types.GroupCallDonor

{schema}

Constructor of GroupCallDonor.

Details:
  • Layer: 227

  • ID: EE430C85

Parameters:
  • stars (int 64-bit)

  • top (bool, optional)

  • my (bool, optional)

  • peer_id (Peer, optional)

TL Schema

groupCallDonor#ee430c85
flags:#
top:flags.0?true
my:flags.1?true
peer_id:flags.3?Peer
stars:long

= GroupCallDonor

Parameter Tree

GroupCallDonor
├── top → true (optional)
├── my → true (optional)
├── peer_id → Peer (optional)
│ ├── PeerUser
│ │ └── user_id → long
│ ├── PeerChat
│ │ └── chat_id → long
│ └── PeerChannel
│ └── channel_id → long
└── stars → long

Example

GroupCallDonor(
    stars=0,
)