Current section
Files
Jump to
Current section
Files
lib/xberg/pdf_annotation.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.PdfAnnotation do
@moduledoc "A PDF annotation extracted from a document page."
@typedoc "A PDF annotation extracted from a document page."
@type t :: %__MODULE__{
annotation_type: String.t() | nil,
content: String.t() | nil,
page_number: non_neg_integer(),
bounding_box: Xberg.BoundingBox.t() | nil
}
defstruct annotation_type: :text,
content: nil,
page_number: 0,
bounding_box: nil
end