| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::RangeCodeType
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.)
High end of the range.
Low end of the range.
(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;