| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::StoreSearchCodeType
Identifies the StoreSearch codes (e.g., for GetSearchResults requests).
(in) Within a single store for all items (specify store in SearchStoreFilterType.StoreName).
(in) Within a single store for auction items (specify store in SearchStoreFilterType.StoreName).
(in) Within a single store for basic fixed price items, Store Inventory format items, and auction items with Buy It Now. (Specify store in SearchStoreFilterType.StoreName).
(in) Across all stores for basic fixed price items, Store Inventory format items, and auction items with Buy It Now.
(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::StoreSearchCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. StoreSearchCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant AllItemsInTheStore => scalar('AllItemsInTheStore');
use constant AuctionItemsInTheStore => scalar('AuctionItemsInTheStore');
use constant BuyItNowItemsInTheStore => scalar('BuyItNowItemsInTheStore');
use constant BuyItNowItemsInAllStores => scalar('BuyItNowItemsInAllStores');
use constant CustomCode => scalar('CustomCode'); 1;