# lib/lutaml/model/xml_mapping_rule.rb require_relative "mapping_rule" module Lutaml module Model class XmlMappingRule < MappingRule attr_reader :namespace, :prefix def initialize(name, to:, render_nil: false, with: {}, delegate: nil, namespace: nil, prefix: nil) super(name, to: to, render_nil: render_nil, with: with, delegate: delegate) @namespace = namespace @prefix = prefix end end end end