eBay::API::XML::DataType::Enum::ExpressProductSortCodeType - eBay::API::XML::DataType::Enum::ExpressProductSortCodeType documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ExpressProductSortCodeType

DESCRIPTION

Top

Sorts the products in ProductArray.

SYNOPSIS

Top

Enums:

Top

LowestPrice

(in) Sort the products by the lowest current price of the items available. The product with the lowest-priced item is returned first.

HighestPrice

(in) Sort the products by the highest current price of the items available. The product with the highest-priced item is returned first.

SalesRank

(in) Sort the products by sales rank. The product with the highest sales rank (i.e., the best-selling product) is returned first. The rules that are used to determine the sales rank vary for each product type and are not disclosed in this documentation. However, in general, the sales rank is based on the number of items sold on Express and/or the main eBay site. This is the default.

CustomCode

(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::ExpressProductSortCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. ExpressProductSortCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 07/07/2008 17:42
# API Release Number: ... 571
#
##########################################################################  


use constant LowestPrice => scalar('LowestPrice');



use constant HighestPrice => scalar('HighestPrice');



use constant SalesRank => scalar('SalesRank');



use constant CustomCode => scalar('CustomCode');







1;