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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ConditionSelectionCodeType

DESCRIPTION

Top

Filter that retrieves only items with the specified item conditon.

SYNOPSIS

Top

Enums:

Top

All

(in) Retrieve all items that match the query, regardless of condition.

New

(in) Only retrieve items that are listed as new (or the equivalent). That is, do not retrieve used or refurbished items (or the equivalent). New is the default setting. (Items that waive the Item Condition requirement are also returned with this setting. If necessary, you can use GetCategoryFeatures to determine which categories waive the Item Condition requirement.)

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

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. ConditionSelectionCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 07/07/2008 17:42
# API Release Number: ... 571
#
##########################################################################  


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



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



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







1;