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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ShippingPackageCodeType

DESCRIPTION

Top

The nature of the package used to ship the item(s). Required for calculated shipping only. Not all package types are supported by a specific shipping service (ShippingServiceCodeType).

SYNOPSIS

Top

Enums:

Top

None

None

Letter

Letter

LargeEnvelope

LargeEnvelope

USPSLargePack

USPS Large Package/Oversize 1

VeryLargePack

Very Large Package/Oversize 2

ExtraLargePack

Extra Large Package/Oversize 3

UPSLetter

UPS Letter

USPSFlatRateEnvelope

USPS Flat Rate Envelope

PackageThickEnvelope

Package/thick envelope

Roll

Roll

Europallet

Europallet

OneWayPallet

Onewaypallet

BulkyGoods

Bulky goods

Furniture

Furniture

Cars

Cars

Motorbikes

Motorbikes

Caravan

Caravan

IndustryVehicles

Industry vehicles

ParcelOrPaddedEnvelope

Parcel or padded Envelope

SmallCanadaPostBox

Small Canada Post Box

MediumCanadaPostBox

Medium Canada Post Box

LargeCanadaPostBox

Large Canada Post Box

SmallCanadaPostBubbleMailer

Small Canada Post Bubble Mailer

MediumCanadaPostBubbleMailer

Medium Canada Post Bubble Mailer

LargeCanadaPostBubbleMailer

Large Canada Post Bubble Mailer

PaddedBags

Padded Bags

ToughBags

Tough Bags

ExpandableToughBags

Expandable Tough Bags

MailingBoxes

Mailing Boxes

Winepak

Winepak

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::ShippingPackageCodeType;

use strict;
use warnings;  

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


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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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







1;