Skip to main content

phone.getGroupCallStars

Fetch the livestream donor and paid-message leaderboard.

func (c *Client) PhoneGetGroupCallStars(ctx context.Context, call InputGroupCallClass) (*PhoneGroupCallStars, error)

Calling this method

client.Run(ctx, func(ctx context.Context) error {
api := client.API()

res, err := api.PhoneGetGroupCallStars(ctx, call)
if err != nil {
return err
}
_ = res // *PhoneGroupCallStars
return nil
})

Parameters

NameTypeRequiredDescription
CallInputGroupCallClassyesCall field of PhoneGetGroupCallStarsRequest.

Returns

*PhoneGroupCallStars

Possible errors

CodeTypeDescription
400GROUPCALL_INVALIDThe specified group call is invalid.

References