| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ItemConditionCodeType
Specifies a predefined subset of item conditions. The predefined set of fields can vary for different calls.
The seller specified the Item Condition as New, or did not specify a condition. (Excludes items that the seller listed as Used.)
The seller specified the Item Condition as Used, or did not specify a condition. (Excludes items that the seller listed as New.)
(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::ItemConditionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ItemConditionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant New => scalar('New');
use constant Used => scalar('Used');
use constant CustomCode => scalar('CustomCode'); 1;