Relyra.Security.XML.SaxyTree.Node (relyra v1.2.0)

Copy Markdown View Source

A single element node in the Relyra.Security.XML.SaxyTree parse tree.

See Relyra.Security.XML.SaxyTree for the full field contract (the stable interface consumed by Plans 02 and 03).

Summary

Types

t()

@type t() :: %Relyra.Security.XML.SaxyTree.Node{
  attrs: [{String.t(), String.t()}],
  children: [t()],
  content: [text: String.t(), element: t()],
  local: String.t(),
  ns: %{optional(String.t()) => String.t()},
  prefix: String.t(),
  qname: String.t(),
  text: String.t()
}