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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::GallerySortFilterCodeType

DESCRIPTION

Top

Specifies how cross-promoted items with gallery images should be displayed.

SYNOPSIS

Top

Enums:

Top

ShowAnyItems

Show any items, in no particular order.

ShowItemsWithGalleryImagesFirst

Show items with gallery images first, before other items.

ShowOnlyItemsWithGalleryImages

Show only items with gallery images.

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

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. GallerySortFilterCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


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



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



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



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







1;