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

NAME

WebService::Recruit::HotPepperBeauty::SmallArea - HotPepperBeauty Web Service "small_area" API

SYNOPSIS

    use WebService::Recruit::HotPepperBeauty;
    
    my $service = WebService::Recruit::HotPepperBeauty->new();
    
    my $param = {
        'key' => $ENV{'WEBSERVICE_RECRUIT_KEY'},
    };
    my $res = $service->small_area( %$param );
    my $data = $res->root;
    print "api_version: $data->api_version\n";
    print "results_available: $data->results_available\n";
    print "results_returned: $data->results_returned\n";
    print "results_start: $data->results_start\n";
    print "small_area: $data->small_area\n";
    print "...\n";

DESCRIPTION

This module is a interface for the small_area API. It accepts following query parameters to make an request.

    my $param = {
        'key' => 'XXXXXXXX',
        'middle_area' => 'AB',
        'start' => 'XXXXXXXX',
        'count' => 'XXXXXXXX',
    };
    my $res = $service->small_area( %$param );

$service above is an instance of WebService::Recruit::HotPepperBeauty.

METHODS

root

This returns the root element of the response.

    my $root = $res->root;

You can retrieve each element by the following accessors.

    $root->api_version
    $root->results_available
    $root->results_returned
    $root->results_start
    $root->small_area
    $root->small_area->[0]->code
    $root->small_area->[0]->name
    $root->small_area->[0]->middle_area
    $root->small_area->[0]->service_area
    $root->small_area->[0]->middle_area->code
    $root->small_area->[0]->middle_area->name
    $root->small_area->[0]->service_area->code
    $root->small_area->[0]->service_area->name

xml

This returns the raw response context itself.

    print $res->xml, "\n";

code

This returns the response status code.

    my $code = $res->code; # usually "200" when succeeded

is_error

This returns true value when the response has an error.

    die 'error!' if $res->is_error;

SEE ALSO

WebService::Recruit::HotPepperBeauty

AUTHOR

RECRUIT Media Technology Labs <mtl@cpan.org>

COPYRIGHT

Copyright 2008 RECRUIT Media Technology Labs