class Lutaml::Model::KeyValueDocument

def [](key)

def [](key)
  @attributes[key]
end

def []=(key, value)

def []=(key, value)
  @attributes[key] = value
end

def initialize(attributes = {})

def initialize(attributes = {})
  @attributes = attributes
end

def key?(key)

def key?(key)
  @attributes.key?(key)
end

def to_h

def to_h
  @attributes
end