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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ShippingTypeCodeType

DESCRIPTION

Top

The shipping cost model offered by the seller.

SYNOPSIS

Top

Enums:

Top

Flat

Flat shipping model: the seller establishes the cost of shipping and cost of shipping insurance, regardless of what any buyer-selected shipping service might charge the seller.

Calculated

Calculated shipping model: the cost of shipping is determined in large part by the seller-offered and buyer-selected shipping service. The seller might assess an additional fee via PackagingHandlingCosts.

Freight

Freight shipping model: the cost of shipping is determined by a third party, FreightQuote.com, based on the item location (zip code). Currently, Freight can only be specified on input via eBay Web site, not API.

Free

Free shipping. Returned only by GetSearchResults and GetProducts. This field is output-only so if you want to use AddItem to specify a free Shipping Cost, specify 0 in Item.ShippingDetails.ShippingServiceOptions.ShippingServiceCost.

NotSpecified

The seller did not specify the shipping type.

FlatDomesticCalculatedInternational

The seller specified one or more flat domestic shipping services and one or more calculated international shipping services.

CalculatedDomesticFlatInternational

The seller specified one or more calculated domestic shipping services and one or more flat international shipping services.

FreightFlat

Freight shipping model: freight shipping may be used when flat or calculated shipping cannot be used due to the greater weight of the item. See "Specifying Freight Shipping" in the Shipping chapter for details on freight shipping.

CustomCode

Reserved for future use.


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::ShippingTypeCodeType;

use strict;
use warnings;  

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


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



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



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



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



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



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



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



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



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







1;