class Lutaml::Model::TomlAdapter::TomlObject

Base class for TOML 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