| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ItemTypeCodeType
Identifies listing-type-related filters.
(in) Only retrieve listings eligible for competitive bidding at auction. That is, only retrieve listings for which ListingType is Chinese, Dutch, or Live (regardless of the BuyItNowEnabled value). If a listing has a listing type of any of the following, it is not retrieved: StoresFixedPrice, FixedPriceItem, and AdType.
(in) Only retrieves listings that can be purchased at a fixed price. That is, only retrieves listings for which listing type is StoresFixedPrice or FixedPriceItem. Whether StoresFixedPrice items are retrieved depends on the site default. If StoresFixedPrice items are retrieved, they are returned after the other retrieved items. Also retrieves Chinese and Dutch auction listings for which BuyItNowEnabled is true. Does not retrieve listings for which listing type is AdType or Live, and does not retrieve auction listings for which BuyItNowEnabled is false.
(in) Returns all listing types (the default for FindItemsAdvanced). It is recommended that you use AllItemTypes instead of AllItems. Whether StoresFixedPrice items are retrieved depends on the site default.
(in) Only retrieves listings for which the listing type is StoresFixedPrice.
(in) Excludes listings that have listing type set to StoresFixedPrice. Excludes listings that have listing type set to AdType or Live. Excludes auction listings in which BuyItNowEnabled is false.
(in) Excludes listings that have listing type set to StoresFixedPrice.
(in) Retrieves listings whether or not listing type is set to StoresFixedPrice; include auction items. In searches for items, you must specify the AllItemTypes value if you want Store Inventory format (StoresFixedPrice) items to be returned.
(in) Retrieves fixed-price items. Whether StoresFixedPrice items are retrieved does not depend on the site default. The StoresFixedPrice items are retrieved after the basic fixed price items. Items are retrieved whether or not listing type is set to StoresFixedPrice. Does not retrieve items for which listing type is AdType or Live. Does not retrieve auction items for which BuyItNowEnabled is false.
(out) Reserved for internal or future use.
(in) Only retrieves Classified Ad format listings.
Restricts listings to return only items that have the Ad Format feature.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::ItemTypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ItemTypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant AuctionItemsOnly => scalar('AuctionItemsOnly');
use constant FixedPricedItem => scalar('FixedPricedItem');
use constant AllItems => scalar('AllItems');
use constant StoreInventoryOnly => scalar('StoreInventoryOnly');
use constant FixedPriceExcludeStoreInventory => scalar('FixedPriceExcludeStoreInventory');
use constant ExcludeStoreInventory => scalar('ExcludeStoreInventory');
use constant AllItemTypes => scalar('AllItemTypes');
use constant AllFixedPriceItemTypes => scalar('AllFixedPriceItemTypes');
use constant CustomCode => scalar('CustomCode');
use constant ClassifiedItemsOnly => scalar('ClassifiedItemsOnly');
use constant AdFormat => scalar('AdFormat'); 1;