# `ExGram.Model.InputRichBlockTable`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.69.0/lib/ex_gram.ex#L7699)

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

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

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

# `t`

```elixir
@type t() :: %ExGram.Model.InputRichBlockTable{
  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*
