SYNOPSIS

  use Net::Amazon;
  use Net::Amazon::Request::Manufacturer;

  my $ua = Net::Amazon->new(
      token       => 'YOUR_AMZN_TOKEN'
  );

  my $req = Net::Amazon::Request::Manufacturer->new(
      manufacturer  => 'Disney'
  );

    # Response is of type Net::Amazon::Response::Manufacturer
  my $resp = $ua->request($req);

DESCRIPTION

\*(C`Net::Amazon::Request::Manufacturer\*(C' is a class used to submit searches for items made by a given manufacturer.

The manufacturer to search for is specified in the \*(C`manufacturer\*(C' parameter.

Upon success, the responses' \*(C`properties()\*(C' method will return one or more \*(C`Net::Amazon::Property::*\*(C' objects.

\s-1METHODS\s0

Constructs a new \*(C`Net::Amazon::Request::Manufacturer\*(C' object, used to query the Amazon web service for an item with the specified manufacturer name.

Check Net::Amazon::Request for common request parameters not listed here.

AUTHORS

Bill Fitzpatrick Mike Schilli, <[email protected]>