Layer 228
constructor
phone.groupCallStars#9d1dbd26 total_stars:long top_donors:Vector<GroupCallDonor> chats:Vector<Chat> users:Vector<User> = phone.GroupCallStars;

Parameters

Name Type Description
TotalStars long Total Stars donated to the live story
TopDonors Vector<GroupCallDonor> Top donors
Chats Vector<Chat> Chats mentioned in top_donors
Users Vector<User> Users mentioned in top_donors

Gogram Example

// Creating PhoneGroupCallStarsObj constructor
obj := &tg.PhoneGroupCallStarsObj{
    TotalStars: int64(1234567890),
    TopDonors: []tg.GroupCallDonor{&tg.GroupCallDonorObj{}},
    Chats: []tg.Chat{&tg.ChatObj{}},
    Users: []tg.User{&tg.UserObj{}},
}