class Lutaml::Model::JsonAdapter::JsonObject
Base class for JSON 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