# `ExGram.Model.StickerSet`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.64.0/lib/ex_gram.ex#L6215)

This object represents a sticker set.

Check the [documentation of this model on Telegram Bot API](https://core.telegram.org/bots/api#stickerset)

- `name`: Sticker set name
- `title`: Sticker set title
- `sticker_type`: Type of stickers in the set, currently one of "regular”, "mask”, "custom_emoji”
- `stickers`: List of all set stickers
- `thumbnail (optional)`: Optional. Sticker set thumbnail in the .WEBP, .TGS, or .WEBM format

# `t`

```elixir
@type t() :: %ExGram.Model.StickerSet{
  name: String.t(),
  sticker_type: String.t(),
  stickers: [ExGram.Model.Sticker.t()],
  thumbnail: ExGram.Model.PhotoSize.t() | nil,
  title: String.t()
}
```

# `decode_as`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
