in reply to traversing a list of objects
One way you can explore this kind of structure is by using Data::Dumper to show the results of a partial access:
print Dumper( $resp ); print Dumper( $resp->{xmlref} ); print Dumper( $resp->{xmlref}->{Details} );
Check out the perlref manpage for more information on the reference syntax.
|
|---|