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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::MerchDisplayCodeType

DESCRIPTION

Top

Specifies whether an eBay Stores seller prefers to promote items with a cross-promotion widget that is customized with the store theme or uses the default eBay theme. This option is the same as the one set on the seller's Customize Cross-Promotion Display page.

SYNOPSIS

Top

Enums:

Top

DefaultTheme

Uses the default eBay theme for cross-promotion widgets.

StoreTheme

Uses the store theme for cross-promotion widgets.

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

use strict;
use warnings;  

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


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



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



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







1;