Object::eBay::ListingDetails - Represents an item's listing details


Object-eBay documentation  | view source Contained in the Object-eBay distribution.

Index


NAME

Top

Object::eBay::ListingDetails - Represents an item's listing details

SYNOPSIS

Top

    # assuming that $item contains an Object::eBay::Item object
    my $end_time = $item->listing_details->end_time();
    print "Ends: $end_time\n";   # "Ends: 2005-09-03T12:18:19.21.000Z"

DESCRIPTION

Top

Represents listing details about an eBay item.

METHODS

Top

new

Objects of class Object::eBay::ListingDetails cannot be constructed directly.

end_datetime

Similar to end_time except it returns a DateTime object. If this method is invoked, you must have a version of the DateTime package installed.

end_time

Returns an ISO8601 formatted string indicating the UTC time that the item is scheduled to end. If the item has ended, it indicates the time when the item ended.

is_buy_it_now_available

Returns an Object::eBay::Boolean object indicating whether or not this auction has buy it now available at the moment. An auction might be listed with a Buy It Now price but once a bid is placed, Buy It Now is no longer available. There are some other business rules which might affect whether or not Buy It Now is available. See http://xrl.us/dwo72 for some details.

start_datetime

Similar to start_time except it returns a DateTime object. If this method is invoked, you must have a version of the DateTime package installed.

start_time

Returns an ISO8601 formatted string indicating the UTC time that the item started.

DIAGNOSTICS

Top

None

CONFIGURATION AND ENVIRONMENT

Top

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

DEPENDENCIES

Top

* Class::Std
* Object::eBay

INCOMPATIBILITIES

Top

None known.

BUGS AND LIMITATIONS

Top

Please report any bugs or feature requests to bug-object-ebay-listingdetails 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

Top

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

http://annocpan.org/dist/Object-eBay

* CPAN Ratings

http://cpanratings.perl.org/d/Object-eBay

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Object-eBay

* Search CPAN

http://search.cpan.org/dist/Object-eBay

ACKNOWLEDGEMENTS

Top

AUTHOR

Top

Michael Hendricks <michael@ndrix.org>

LICENSE AND COPYRIGHT

Top


Object-eBay documentation  | view source Contained in the Object-eBay distribution.