| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::FlatShippingRateOptionCodeType
Flat Shipping Rate Options
Charge highest shipping cost for the first item and X amount for each additional item.
Charge highest shipping cost for the first item and deduct X amount from the shipping cost of each additional item.
Charge highest shipping cost for the first item and ship each additional item free.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::FlatShippingRateOptionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. FlatShippingRateOptionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant ChargeAmountForEachAdditionalItem => scalar('ChargeAmountForEachAdditionalItem');
use constant DeductAmountFromEachAdditionalItem => scalar('DeductAmountFromEachAdditionalItem');
use constant ShipAdditionalItemsFree => scalar('ShipAdditionalItemsFree');
use constant CustomCode => scalar('CustomCode'); 1;