NAME
Net::Azure::EventHubs::Response - A Response Class for Net::Azure::EventHubs
SYNOPSIS
use Net::Azure::EventHubs::Request;
use LWP::UserAgent;
my $req = Net::Azure::EventHubs::Request->new(GET => 'http://...');
$req->agent(LWP::UserAgent->new);
my $res = $req->do;
my $json_data = $res->as_hashref;
DESCRIPTION
Net::Azure::EventHubs::Response is a response class for Net::Azure::EventHubs.
It inherits HTTP::Response.
METHODS
as_hashref
my $json_data = $res->as_hashref;
Return a content data as hashref when content type is 'application/json'. Otherwise, undef is returned.
LICENSE
Copyright (C) ytnobody.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
ytnobody <ytnobody@gmail.com>