messages.readFeaturedStickers
Mark new featured stickers as read
func (c *Client) MessagesReadFeaturedStickers(ctx context.Context, id []int64) (bool, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.MessagesReadFeaturedStickers(ctx, id)
if err != nil {
return err
}
_ = res // bool
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ID | []int64 | yes | IDs of stickersets to mark as read |
Returns
bool
References
- Official documentation
- Generated Go reference
- TL definition:
messages.readFeaturedStickers#5b118126