| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::PromotionSchemeCodeType
Identifies the scheme used for a cross-promotion rule. The scheme defines referring and promoted items and categories. To define a rule scheme, you must be the owner of an eBay Store.
The seller specifies individual items in the store that are promoted when a buyer views, bids on, or purchases a store item.
The seller specifies a store category from which items are promoted when a buyer views, bids on, or purchases an individual item in the store.
The seller specifies referring and promoted categories, both from the store. When a buyer views or acts on any item from that category, items from the promoted category are also displayed.
The seller specifies a referring item and defines promoted items selected from a store category, eBay category, or keywords.
The seller specifies a store category or eBay category, with optional keywords, for referring items and one for promoted items. When a referring item is selected from the category and keywords, items from the promoted category and keywords are also displayed.
This scheme is returned as a backfill scheme used to promote items.
This scheme is returned as related category scheme used to promote items.
This scheme is returned as a backfill scheme used to promote items.
This scheme is returned as a backfill scheme used to promote 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::PromotionSchemeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. PromotionSchemeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant ItemToItem => scalar('ItemToItem');
use constant ItemToStoreCat => scalar('ItemToStoreCat');
use constant StoreToStoreCat => scalar('StoreToStoreCat');
use constant ItemToDefaultRule => scalar('ItemToDefaultRule');
use constant DefaultRule => scalar('DefaultRule');
use constant CategoryProximity => scalar('CategoryProximity');
use constant RelatedCategoryRule => scalar('RelatedCategoryRule');
use constant DefaultUpSellLogic => scalar('DefaultUpSellLogic');
use constant DefaultCrossSellLogic => scalar('DefaultCrossSellLogic');
use constant CustomCode => scalar('CustomCode'); 1;