Current section

Files

Jump to
xberg lib xberg table_diff.ex
Raw

lib/xberg/table_diff.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:0ba7524a2759609dc6f17c04fa9ae89940b7a540ae2e9a3708ac3fca410f8701
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.TableDiff do
@moduledoc "Cell-level changes for a pair of tables that share the same index."
@typedoc "Cell-level changes for a pair of tables that share the same index."
@type t :: %__MODULE__{
from_index: non_neg_integer(),
to_index: non_neg_integer(),
cell_changes: [Xberg.CellChange.t()]
}
defstruct from_index: 0,
to_index: 0,
cell_changes: []
end