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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::HandlingNameCodeType

DESCRIPTION

Top

How packaging/handling cost is to be determined for combined payment.

SYNOPSIS

Top

Enums:

Top

EachAdditionalAmount

After eBay assigns the highest packaging/handling cost to the first item, the packaging/handling cost for each additional item is $n.

EachAdditionalAmountOff

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.

EachAdditionalPercentOff

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.

IndividualHandlingFee

The total packaging/handling cost is to be the sum of the packaging/handling costs of the individual items.

CombinedHandlingFee

The packaging/handling cost is to be N 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::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;