| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ItemFormatSortFilterCodeType
Specifies that you want to display items based on selling format, such as Buy It Now or Store items.
Show any items, in no particular order.
Show items with a Buy It Now price first.
Show only items with a Buy It Now price.
Show only store inventory items.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::ItemFormatSortFilterCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ItemFormatSortFilterCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant ShowAnyItems => scalar('ShowAnyItems');
use constant ShowItemsWithBINFirst => scalar('ShowItemsWithBINFirst');
use constant ShowOnlyItemsWithBIN => scalar('ShowOnlyItemsWithBIN');
use constant ShowOnlyStoreItems => scalar('ShowOnlyStoreItems');
use constant CustomCode => scalar('CustomCode'); 1;