Kernel::System::YAML - YAML wrapper functions
Functions for YAML serialization / deserialization.
create a YAML object. Do not use it directly, instead use:
my $YAMLObject = $Kernel::OM->Get('Kernel::System::YAML');
Dump a perl data structure to a YAML string.
my $YAMLString = $YAMLObject->Dump( Data => $Data, );
Load a YAML string to a perl data structure. This string must be a encoded in UTF8.
my $PerlStructureScalar = $YAMLObject->Load( Data => $YAMLString, );
This software is part of the OTRS project (https://otrs.org/).
This software comes with ABSOLUTELY NO WARRANTY. For details, see the enclosed file COPYING for license information (GPL). If you did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.