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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ItemConditionCodeType

DESCRIPTION

Top

Specifies a predefined subset of item conditions. The predefined set of fields can vary for different calls.

SYNOPSIS

Top

Enums:

Top

New

The seller specified the Item Condition as New, or did not specify a condition. (Excludes items that the seller listed as Used.)

Used

The seller specified the Item Condition as Used, or did not specify a condition. (Excludes items that the seller listed as New.)

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