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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::StoreSearchCodeType

DESCRIPTION

Top

Identifies the StoreSearch codes (e.g., for GetSearchResults requests).

SYNOPSIS

Top

Enums:

Top

AllItemsInTheStore

(in) Within a single store for all items (specify store in SearchStoreFilterType.StoreName).

AuctionItemsInTheStore

(in) Within a single store for auction items (specify store in SearchStoreFilterType.StoreName).

BuyItNowItemsInTheStore

(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).

BuyItNowItemsInAllStores

(in) Across all stores for basic fixed price items, Store Inventory format items, and auction items with Buy It Now.

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