GroupCallDonor

class pyrogram.raw.base.GroupCallDonor
Constructors:

This base type has 1 constructor available.

GroupCallDonor

{schema}

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(
    top=None,
    my=None,
    peer_id=PeerUser(user_id=0),
    stars=0,
)