in reply to Re^3: Passing a Hash to another Object in MethodMaker
in thread Passing a Hash to another Object in MethodMaker

Hi Kenneth, Thank you for your help, the final working code is:
my $object = UPS::TrackedPackage->new(); $object->_returned_xml($processedXML); return $object;
and
use Class::MethodMaker [ new => "new", scalar => 'debug' , scalar => '_returned_xml' , ];