| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::WishListSortCodeType
This type contains ordering criteria for sorting wishlists. The default ordering is CreationDateAscending.
Return recently added wish list items first. This is the default sorting order.
Return older wish list items first.
Return lowest priced items and products first. Note that price rankings will not take shipping costs into account.
Return highest priced items and products first. Note that price rankings will not take shipping costs into account.
(out) Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::WishListSortCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. WishListSortCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 07/07/2008 17:42 # API Release Number: ... 571 # ##########################################################################
use constant CreationDateDescending => scalar('CreationDateDescending');
use constant CreationDateAscending => scalar('CreationDateAscending');
use constant PriceAscending => scalar('PriceAscending');
use constant PriceDescending => scalar('PriceDescending');
use constant CustomCode => scalar('CustomCode'); 1;