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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PromotionMethodCodeType

DESCRIPTION

Top

The type of promotion.

SYNOPSIS

Top

Enums:

Top

CrossSell

Promote/present items that are related to or can be used with the specified item.

UpSell

Promote/present items that of higher quality or more expensive than the specified item.

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

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. PromotionMethodCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant CrossSell => scalar('CrossSell');



use constant UpSell => scalar('UpSell');



use constant CustomCode => scalar('CustomCode');







1;