Current section

Files

Jump to
xberg lib xberg ocr_table_bounding_box.ex
Raw

lib/xberg/ocr_table_bounding_box.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:61b2c8938c132132f6ac987a5658fed582bea2f8248dbe1d25aa618e0ec0b375
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.OcrTableBoundingBox do
@moduledoc "Bounding box for an OCR-detected table in pixel coordinates."
@typedoc "Bounding box for an OCR-detected table in pixel coordinates."
@type t :: %__MODULE__{
left: non_neg_integer(),
top: non_neg_integer(),
right: non_neg_integer(),
bottom: non_neg_integer()
}
defstruct left: 0,
top: 0,
right: 0,
bottom: 0
end