eBay::API::XML::DataType::Enum::CalculatedShippingChargeOptionCodeType - eBay::API::XML::DataType::Enum::CalculatedShippingChargeOptionCodeType documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::CalculatedShippingChargeOptionCodeType

DESCRIPTION

Top

Calculated Shipping Charge Options

SYNOPSIS

Top

Enums:

Top

ChargeEachItem

Charge the actual shipping cost and my full packaging and handling fee for each item.

ChargeEntireOrder

Charge the actual shipping cost and a packaging and handling fee of X amount for the entire order.

CustomCode

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;