Represents a row item inside a list message section.
Fields
:id- unique identifier for the row (sent back on selection):title- display title (max 24 characters):description- optional description text (max 72 characters)
Examples
iex> Anu.Row.new("opt_1", "Option 1")
%Anu.Row{id: "opt_1", title: "Option 1", description: nil}
iex> Anu.Row.new("opt_2", "Option 2", description: "More details")
%Anu.Row{id: "opt_2", title: "Option 2", description: "More details"}
Summary
Functions
Creates a new row with the given id and title.