The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::APE::Raw - Raw object from the APE-Server

VERSION

version 0.003

SYNOPSIS

  my $http_request = $ape_request->get_http_request;

  my $http_response = $http_client->request($http_request);

  my $ape_response = Net::APE::Response->new(
    http_response => $http_response,
  );

  my $raw = $ape_response->shift_raw;
  
  $raw->time;
  $raw->raw;
  $raw->data;
  $raw->code;

DESCRIPTION

METHODS

time

Gives back the DateTime object of the time variable of the answer

raw

Gives back a string of the raw variable in the answer

data

Gives back the hashref of the data variable in the answer

code

Gives back the code of the code variable inside the data of the answer

AUTHOR

Torsten Raudssus <torsten@raudssus.de> http://www.raudssus.de/

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Raudssus Social Software.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.