| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ProductSortCodeType
Controls the order of product (not item) searches.
Sort by product popularity (as determined by eBay), and return the most popular products first.
Sort by product popularity (as determined by eBay), and return the least popular products first.
Sort by average rating, and return the lowest rated products first.
Sort by average rating, and return the highest rated products first.
Sort by the number of reviews, and return products with the fewest reviews first.
Sort by the number of reviews, and return products with the most reviews first.
Sort by the number of active items listed with this product, and return products with the fewest items first.
Sort by the number of active items listed with this product, and return products with the most items first.
Sort by the product title, and return products in ascending order. For example, with Western character sets, this means alphabetical order (e.g., A to Z), where titles that start with the word "A" appear before titles that start with the word "The".
Sort by the product title, and return products in reverse order (e.g., Z to A).
Reserved for values that are not available in the version of the schema you are using. If eBay adds a new value to this code type as of a particular version, we return CustomCode when you specify a lower request version.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::ProductSortCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ProductSortCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant PopularityAsc => scalar('PopularityAsc');
use constant PopularityDesc => scalar('PopularityDesc');
use constant RatingAsc => scalar('RatingAsc');
use constant RatingDesc => scalar('RatingDesc');
use constant ReviewCountAsc => scalar('ReviewCountAsc');
use constant ReviewCountDesc => scalar('ReviewCountDesc');
use constant ItemCountAsc => scalar('ItemCountAsc');
use constant ItemCountDesc => scalar('ItemCountDesc');
use constant TitleAsc => scalar('TitleAsc');
use constant TitleDesc => scalar('TitleDesc');
use constant CustomCode => scalar('CustomCode'); 1;