class Lutaml::Model::YamlAdapter::YamlObject

Base class for YAML objects

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 to_h

def to_h
  @attributes
end