
Object::eBay::User - Represents an eBay user

# Assuming that Object::eBay has been initialized
use Object::eBay::User;
my $user = Object::eBay::User->new({ user_id => 'example' });
print "Feedback Score: ", $user->feedback_score(), "\n";

Represents an eBay user.

Requires a single hashref as the argument. The hashref should contain a key 'user_id' whose value is the ID of the user you want the new object to represent.
Returns an integere indicating the user's feedback score.
Returns an Object::eBay::Boolean object representing 'true' if the user's feedback score is private. Returns 'false' if the user's feedback score is public.

None

Object::eBay::User requires no configuration files or environment variables.


None known.

Please report any bugs or feature requests to bug-object-ebay-user at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Object-eBay. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc Object::eBay
You can also look for information at:


Michael Hendricks <michael@ndrix.org>

Copyright (c) 2006 Michael Hendricks (<michael@ndrix.org>). All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.