| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::StoreItemListSortOrderCodeType
List of available options for how items are sorted in an eBay Store.
Lists items with those ending soon listed first.
Lists items with those newly listed appearing in the list first.
Lists items by price in ascending order. The item with the lowest starting price is listed first.
Lists items by price in descending order. The item with the highest starting price is listed first.
(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::StoreItemListSortOrderCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. StoreItemListSortOrderCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant EndingFirst => scalar('EndingFirst');
use constant NewlyListed => scalar('NewlyListed');
use constant LowestPriced => scalar('LowestPriced');
use constant HighestPriced => scalar('HighestPriced');
use constant CustomCode => scalar('CustomCode'); 1;