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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::WishListSortCodeType

DESCRIPTION

Top

This type contains ordering criteria for sorting wishlists. The default ordering is CreationDateAscending.

SYNOPSIS

Top

Enums:

Top

CreationDateDescending

Return recently added wish list items first. This is the default sorting order.

CreationDateAscending

Return older wish list items first.

PriceAscending

Return lowest priced items and products first. Note that price rankings will not take shipping costs into account.

PriceDescending

Return highest priced items and products first. Note that price rankings will not take shipping costs into account.

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::WishListSortCodeType;

use strict;
use warnings;  

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


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



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



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



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



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







1;