Current section

Files

Jump to
xberg lib xberg xml_extraction_result.ex
Raw

lib/xberg/xml_extraction_result.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:b2c29ab80fb9cdb8c5190a7808ad862ad890f416ad887092447b282a5b1b69e0
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.XmlExtractionResult do
@moduledoc """
XML extraction result.
Contains extracted text content from XML files along with
structural statistics about the XML document.
"""
@typedoc "XML extraction result."
@type t :: %__MODULE__{
content: String.t() | nil,
element_count: non_neg_integer(),
unique_elements: [String.t()]
}
defstruct content: nil,
element_count: 0,
unique_elements: []
end