| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ShippingRateTypeCodeType
A shipping rate scale for shipping through UPS that affects the shipping cost calculated for UPS (lower if ShippingRateType is DailyPickup). For calculated shipping only.
"On-demand" shipping rate scale.
"Daily pickup" shipping rate scale.
(out) Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::ShippingRateTypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ShippingRateTypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant OnDemand => scalar('OnDemand');
use constant DailyPickup => scalar('DailyPickup');
use constant CustomCode => scalar('CustomCode'); 1;