| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ConditionSelectionCodeType
Filter that retrieves only items with the specified item conditon.
(in) Retrieve all items that match the query, regardless of condition.
(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.)
(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;