| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::CalculatedShippingChargeOptionCodeType
Calculated Shipping Charge Options
Charge the actual shipping cost and my full packaging and handling fee for each item.
Charge the actual shipping cost and a packaging and handling fee of X amount 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::CalculatedShippingChargeOptionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. CalculatedShippingChargeOptionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant ChargeEachItem => scalar('ChargeEachItem');
use constant ChargeEntireOrder => scalar('ChargeEntireOrder');
use constant CustomCode => scalar('CustomCode'); 1;