Object::eBay::User represents an eBay user.
SYNOPSIS
# 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";
METHODS
new
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.
feedback_score
Returns an integere indicating the user's feedback score.
feedback_private
Returns 'true' if the user's feedback score is private. Returns 'false' if the user's feedback score is public. In future releases, the return value may change into an object which correctly handles boolean context however string context will retain the current behavior. So, if you depend on the true/false strings, please stringify the return value fo feedback_private first.
Product's homepage
Requirements:
· Perl