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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PromotionalSaleTypeCodeType

DESCRIPTION

Top

Values specify or indicate the type of promotional sale offered. Promotional sales give store owners the ability to apply discounts and/or free shipping across many listings for a specific duration.

SYNOPSIS

Top

Enums:

Top

PriceDiscountOnly

Sale offers price discount only.

FreeShippingOnly

Sale offers free shipping only.

PriceDiscountAndFreeShipping

Sale offers both price discount and free shipping.

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

use strict;
use warnings;  

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


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



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



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



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







1;