class Dry::Schema::Message::Or::MultiPath

def initialize(*args)

Other tags:
    Api: - private
def initialize(*args)
  super
  @root = [left, right].flatten.map(&:_path).reduce(:&)
  @left = left.map { |msg| msg.to_or(root) }
  @right = right.map { |msg| msg.to_or(root) }
end