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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PromotionSchemeCodeType

DESCRIPTION

Top

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.

SYNOPSIS

Top

Enums:

Top

ItemToItem

The seller specifies individual items in the store that are promoted when a buyer views, bids on, or purchases a store item.

ItemToStoreCat

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.

StoreToStoreCat

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.

ItemToDefaultRule

The seller specifies a referring item and defines promoted items selected from a store category, eBay category, or keywords.

DefaultRule

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.

CategoryProximity

This scheme is returned as a backfill scheme used to promote items.

RelatedCategoryRule

This scheme is returned as related category scheme used to promote items.

DefaultUpSellLogic

This scheme is returned as a backfill scheme used to promote items.

DefaultCrossSellLogic

This scheme is returned as a backfill scheme used to promote items.

CustomCode

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;