NAME
Object::eBay::SellingStatus - Represents an item's selling status
SYNOPSIS
# Assuming that $item has an Object::eBay::Item object
my $price = $item->selling_status->current_price;
DESCRIPTION
Represents the selling status information for an eBay item.
METHODS
new
Objects of this class cannot be constructed directly. They are returned as the result of method calls on other objects.
bid_count
Returns the number of bids which have been placed on this item so far.
converted_current_price
Returns an Object::eBay::Currency object indicating the price of an item converted to the currency of the site which responded to the API call. This is probably going to be in U.S. Dollars.
current_price
Returns an Object::eBay::Currency object indicating the price of an item. The price will be in whatever currency the seller designated.
high_bidder
Returns an Object::eBay::User object indicating which user is the current high bidder.
listing_status
Returns one of the following statuses about the listing. See eBay's GetItem documentation at http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/GetItem.html for the meaning of each term.
* Active
* Completed
* Ended
* Custom (eBay internal or future use only)
* CustomCode (eBay internal or future use only)
See also "is_ended" in Object::eBay::Item.
quantity_sold
Returns the number of items sold during this auction. If the auction had a successful buyer, the value will be greater than 0. Otherwise, it will be 0.
DIAGNOSTICS
None
CONFIGURATION AND ENVIRONMENT
Object::eBay::SellingStatus requires no configuration files or environment variables.
DEPENDENCIES
Class::Std
Object::eBay
INCOMPATIBILITIES
None known.
BUGS AND LIMITATIONS
Please report any bugs or feature requests to bug-object-ebay-sellingstatus 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:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN
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.