Current section
Files
Jump to
Current section
Files
lib/xberg/page_classification.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:926a121ce8858da89e1c2dae78836bd02775ed955b144da6ce043a83737b8c26
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.PageClassification do
@moduledoc "Classification result for a single page."
@typedoc "Classification result for a single page."
@type t :: %__MODULE__{
page_number: non_neg_integer(),
labels: [Xberg.ClassificationLabel.t()]
}
defstruct page_number: 0,
labels: []
end