Skip to main content

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

NameTypeRequiredDescription
ID[]int64yesIDs of stickersets to mark as read

Returns

bool

References