class Lutaml::Model::KeyValueMappingRule

def initialize(

def initialize(
  name,
  to:,
  render_nil: false,
  render_default: false,
  with: {},
  delegate: nil,
  child_mappings: nil,
  root_mappings: nil
)
  super(
    name,
    to: to,
    render_nil: render_nil,
    render_default: render_default,
    with: with,
    delegate: delegate
  )
  @child_mappings = child_mappings
  @root_mappings = root_mappings
end