Help for this page

Select Code to Download


  1. or download this
    my $xml_response_object = $xs->XMLin($response->content, forcearray =>
    + 1);
    
  2. or download this
    my $xs = XML::Simple->new;
    my $xml_response_object = $xs->XMLin($response->content, forcearray =>
    + 1);
    
  3. or download this
    print Dumper($response);
    Response Dump: $VAR1 = {
    ...
                            }
                          ]
            };
    
  4. or download this
        
    foreach my $asset_type ( keys %{$response} ) {  
      $logger->debug("Starting asset_type $asset_type");
    ...
        $i++;
      }
    }