GroupCallDonor

class pyrogram.raw.types.GroupCallDonor

{schema}

Constructor of GroupCallDonor.

Details:
  • Layer: 223

  • 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
├── toptrue (optional)
├── mytrue (optional)
├── peer_idPeer (optional)
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
└── starslong

Example

GroupCallDonor(
    stars=0,
)