class Lutaml::Model::Location
def eql?(other)
def eql?(other) other.class == self.class && namespace == other.namespace && location == other.location end
def initialize(namespace:, location:)
def initialize(namespace:, location:) @namespace = namespace @location = location end
def to_xml_attribute
def to_xml_attribute "#{@namespace} #{@location}".strip end