
Net::Amazon::Attribute::Review - Customer Review Class

use Net::Amazon::Attribute::Review;
my $rev = Net::Amazon::Attribute::Review->new(
'rating' => $rating,
'summary' => $summary,
'content' => $content,
'asin' => $asin,
'customer_id' => $customer_id,
'date' => $date,
'helpful_votes' => $helpful_votes,
'total_votes' => $total_votes,
);

Net::Amazon::Attribute::Review holds customer reviews.
Accessor for the numeric value of the rating.
Accessor for the string value of the summary.
Accessor for the string value of the content.
Accessor for the string value of ASIN.
Accessor for the string value of the customer ID.
Accessor for the string value of the customer location.
Accessor for the string value of the customer name.
Accessor for the numeric value of the helpful votes.
Accessor for the numeric value of the total votes.

Mike Schilli, <m@perlmeister.com>

Copyright 2003 by Mike Schilli <m@perlmeister.com>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.