premium.getMyBoosts
Obtain which peers are we currently boosting, and how many boost slots we have left.
func (c *Client) PremiumGetMyBoosts(ctx context.Context) (*PremiumMyBoosts, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.PremiumGetMyBoosts(ctx)
if err != nil {
return err
}
_ = res // *PremiumMyBoosts
return nil
})
Parameters
This method takes no parameters.
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
premium.getMyBoosts#be77b4a