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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::RangeCodeType

DESCRIPTION

Top

Type declaration to be used by other schema. Indicates that the data represents the high or low end in a range, such as a date range, price range, or width range. (For example, when calling GetProductSearchResults, you use range codes to indicate the role of an attribute in a range.)

SYNOPSIS

Top

Enums:

Top

High

High end of the range.

Low

Low end of the range.

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

use strict;
use warnings;  

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


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



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



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







1;