| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::GallerySortFilterCodeType
Specifies how cross-promoted items with gallery images should be displayed.
Show any items, in no particular order.
Show items with gallery images first, before other items.
Show only items with gallery images.
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;