| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ItemSortFilterCodeType
Specifies how items should be sorted.
Sort items by ending time, with items ending last first.
Sort items by ending time, with items ending soonest first.
Sort items by price, with the highest price first.
Sort items by price, with the lowest price first.
Sort items by listing time, with newly listed items first.
Sort items in a randomly selected order.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::ItemSortFilterCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ItemSortFilterCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant EndingLast => scalar('EndingLast');
use constant EndingSoonest => scalar('EndingSoonest');
use constant HighestPrice => scalar('HighestPrice');
use constant LowestPrice => scalar('LowestPrice');
use constant NewlyListed => scalar('NewlyListed');
use constant RandomlySelected => scalar('RandomlySelected');
use constant CustomCode => scalar('CustomCode'); 1;