| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DiscountCodeType
Specifies which discount type to use.
Specifies discount type as percentage.
Specifies discount type as a fixed amount. Discount will be in the currency of the original listing.
Future use
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::DiscountCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DiscountCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Percentage => scalar('Percentage');
use constant Price => scalar('Price');
use constant CustomCode => scalar('CustomCode'); 1;