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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ExpressSellingPreferenceCodeType

DESCRIPTION

Top

Specifies the kinds of eligible listings tht the seller prefers to include on Express.

SYNOPSIS

Top

Enums:

Top

All

The seller wants all of their eligible listings to appear on Express (in addition to the main eBay site), regardless of the listing format. Only applicable to sellers who are eligible for Express US or Express Germany. (By default, eBay sets this option for every eligible seller.)

ExpressOnly

The seller only wants their Express format listings to appear on Express. (They don't want their fixed-price and Store Inventory format listings to appear on Express.) Only applicable to sellers who are eligible for Express Germany.

OptOut

The seller does not want any of their eligible listings to appear on Express. That is, the seller prefers to completely opt out of Express. Only applicable to sellers who are eligible for Express US. (Germany sellers can't use the API to opt out of Express. Germany sellers should see the Express Web site online help for information on how to end their Express qualification.)

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

use strict;
use warnings;  

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


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



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



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



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







1;