| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::HandlingNameCodeType
How packaging/handling cost is to be determined for combined payment.
After eBay assigns the highest packaging/handling cost to the first item, the packaging/handling cost for each additional item is $n.
After eBay assigns the highest packaging/handling cost to the first item, the packaging/handling cost for each additional item is to be reduced by amount N.
After eBay assigns the highest packaging/handling cost to the first item, the packaging/handling cost for each additional item is to be reduced by N percent.
The total packaging/handling cost is to be the sum of the packaging/handling costs of the individual items.
The packaging/handling cost is to be N for the entire order.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::HandlingNameCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. HandlingNameCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant EachAdditionalAmount => scalar('EachAdditionalAmount');
use constant EachAdditionalAmountOff => scalar('EachAdditionalAmountOff');
use constant EachAdditionalPercentOff => scalar('EachAdditionalPercentOff');
use constant IndividualHandlingFee => scalar('IndividualHandlingFee');
use constant CombinedHandlingFee => scalar('CombinedHandlingFee');
use constant CustomCode => scalar('CustomCode'); 1;