Current section
Files
Jump to
Current section
Files
lib/xberg/ocr_table.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e21c71a5751b345136e5ca51dea30bbd3862f7fdc63aa50e6b36be84c454e0e
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.OcrTable do
@moduledoc """
Table detected via OCR.
Represents a table structure recognized during OCR processing.
"""
@typedoc "Table detected via OCR."
@type t :: %__MODULE__{
cells: [[String.t()]],
markdown: String.t() | nil,
page_number: non_neg_integer(),
bounding_box: Xberg.OcrTableBoundingBox.t() | nil
}
defstruct cells: [],
markdown: nil,
page_number: 0,
bounding_box: nil
end