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

NAME

WebService::Recruit::HotPepper::SmallArea - HotPepper Web Service "SmallArea" API

SYNOPSIS

    use WebService::Recruit::HotPepper;

    my $api = WebService::Recruit::HotPepper->new();
    $api->key( 'xxxxxxxxxxxxxxxx' );

    my $res = $api->SmallArea();
    die 'error!' if $res->is_error;

    my $list = $res->root->SmallArea;
    foreach my $area ( @$list ) {
        print "name:  ", $area->SmallAreaName, "\n";
        print "code:  ", $area->SmallAreaCD, "\n";
        print "\n";
    }

DESCRIPTION

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

    my $res = $hpp->SmallArea();

$hpp above is an instance of WebService::Recruit::HotPepper.

METHODS

root

This returns the root element of the response.

    my $root = $res->root;

You can retrieve each element by the following accessors.

    $root->NumberOfResults;
    $root->APIVersion;
    $root->SmallArea->[0]->SmallAreaName;
    $root->SmallArea->[0]->SmallAreaCD;
    $root->SmallArea->[0]->MiddleAreaCD;

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::HotPepper

AUTHOR

Toshimasa Ishibashi http://iandeth.dyndns.org/

This module is unofficial and released by the author in person.

THANKS TO

Yusuke Kawasaki http://www.kawa.net/

For creating/preparing all the base modules and stuff.

COPYRIGHT AND LICENSE

Copyright (c) 2007 Toshimasa Ishibashi. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.