| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::SortOrderCodeType
Indicates the order in which the catalog search engine will sort the results if you pass a sort attribute (SortAttributeID) in search requests. Applications cannot change the sort order of a sort attribute.
The results will be sorted by the specified attribute in ascending (low to high) order.
The results will be sorted by the specified attribute in descending (high to low) order.
(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::SortOrderCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SortOrderCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Ascending => scalar('Ascending');
use constant Descending => scalar('Descending');
use constant CustomCode => scalar('CustomCode'); 1;