GroupCallDonor
- class pyrogram.raw.base.GroupCallDonor
- Constructors:
This base type has 1 constructor available.
{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
├── top →
true (optional)├── my →
true (optional)├── peer_id →
Peer (optional)│ ├──
PeerUser│ │ └── user_id →
long│ ├──
PeerChat│ │ └── chat_id →
long│ └──
PeerChannel│ └── channel_id →
long└── stars →
longExample
GroupCallDonor(
top=None,
my=None,
peer_id=PeerUser(user_id=0),
stars=0,
)