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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ShippingFeatureCodeType

DESCRIPTION

Top

Miscellaneous details of the shipment.

SYNOPSIS

Top

Enums:

Top

DeliveryConfirmation

Confirmation requested.

SignatureConfirmation

Signature requested upon receipt.

StealthPostage

Stealth postage.

SaturdayDelivery

Saturday delivery.

Other

Other.

NotDefined

Not defined.

CustomCode

(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::ShippingFeatureCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. ShippingFeatureCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant DeliveryConfirmation => scalar('DeliveryConfirmation');



use constant SignatureConfirmation => scalar('SignatureConfirmation');



use constant StealthPostage => scalar('StealthPostage');



use constant SaturdayDelivery => scalar('SaturdayDelivery');



use constant Other => scalar('Other');



use constant NotDefined => scalar('NotDefined');



use constant CustomCode => scalar('CustomCode');







1;