class Lutaml::Model::Yaml::StandardAdapter
def self.parse(yaml, _options = {})
def self.parse(yaml, _options = {}) YAML.safe_load(yaml, permitted_classes: PERMITTED_CLASSES) end
def to_yaml(options = {})
def to_yaml(options = {}) YAML.dump(@attributes, options) end