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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::InsuranceOptionCodeType

DESCRIPTION

Top

The seller's requirements regarding whether the buyer pays for shipping insurance.

SYNOPSIS

Top

Enums:

Top

Optional

The seller offers the buyer the choice of paying for shipping insurance or not.

Required

The seller requires that the buyer pay for shipping insurance.

NotOffered

The seller does not offer shipping insurance to the buyer.

IncludedInShippingHandling

The seller is not charging separately for shipping insurance costs; any insurance is already included in the base shipping cost.

NotOfferedOnSite

Shipping insurance is not offered as a separate option on the site where the item is listed. (Some shipping services, such as DE_InsuredExpressOrCourier, include insurance as part of the service.) If another insurance option is specified in the listing request and the site does not support shipping insurance as a separate option, eBay will reset the insurance option to this value. At the time of this writing, this option is only meaningful for the eBay Germany, Austria, and Switzerland sites.

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

use strict;
use warnings;  

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


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



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



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



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



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



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







1;