# `ExGram.Model.RichBlockTable`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.67.0/lib/ex_gram.ex#L7233)

A table, corresponding to the HTML tag <table>.

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

- `type`: Type of the block, always "table”
- `cells`: Cells of the table
- `is_bordered (optional)`: Optional. True, if the table has borders
- `is_striped (optional)`: Optional. True, if the table is striped
- `caption (optional)`: Optional. Caption of the table

# `t`

```elixir
@type t() :: %ExGram.Model.RichBlockTable{
  caption: ExGram.Model.RichText.t() | nil,
  cells: [[ExGram.Model.RichBlockTableCell.t()]],
  is_bordered: boolean() | nil,
  is_striped: boolean() | nil,
  type: String.t()
}
```

# `decode_as`

---

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