| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::PromotionalSaleTypeCodeType
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.
Sale offers price discount only.
Sale offers free shipping only.
Sale offers both price discount and free shipping.
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;