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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ItemSortFilterCodeType

DESCRIPTION

Top

Specifies how items should be sorted.

SYNOPSIS

Top

Enums:

Top

EndingLast

Sort items by ending time, with items ending last first.

EndingSoonest

Sort items by ending time, with items ending soonest first.

HighestPrice

Sort items by price, with the highest price first.

LowestPrice

Sort items by price, with the lowest price first.

NewlyListed

Sort items by listing time, with newly listed items first.

RandomlySelected

Sort items in a randomly selected order.

CustomCode

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;