ExGram.Model.RichBlockTable (ex_gram v0.67.0)

Copy Markdown View Source

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

Check the documentation of this model on Telegram Bot API

  • 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

Summary

Types

t()

@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()
}

Functions

decode_as()