Michael Hendricks > Object-eBay-0.3.2 > Object::eBay::User

Download:
Object-eBay-0.3.2.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.3.2   Source   Latest Release: Object-eBay-0.4.0

NAME ^

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";

DESCRIPTION ^

Represents an eBay user.

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.

is_feedback_private

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.

DIAGNOSTICS ^

None

CONFIGURATION AND ENVIRONMENT ^

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

DEPENDENCIES ^

INCOMPATIBILITIES ^

None known.

BUGS AND LIMITATIONS ^

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.

SUPPORT ^

You can find documentation for this module with the perldoc command.

    perldoc Object::eBay

You can also look for information at:

ACKNOWLEDGEMENTS ^

AUTHOR ^

Michael Hendricks <michael@ndrix.org>

LICENSE AND COPYRIGHT ^

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.