| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::QuantityOperatorCodeType
Used by QuantityOperator to specify that you are seeking quantities less than Quantity.
Used by QuantityOperator to specify that you are seeking quantities less than or equal to Quantity.
Used by QuantityOperator to specify that you are seeking quantities equal to Quantity.
Used by QuantityOperator to specify that you are seeking quantities greater than Quantity.
Used by QuantityOperator to specify that you are seeking quantities greater than or equal to Quantity.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::QuantityOperatorCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. QuantityOperatorCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant LessThan => scalar('LessThan');
use constant LessThanOrEqual => scalar('LessThanOrEqual');
use constant Equal => scalar('Equal');
use constant GreaterThan => scalar('GreaterThan');
use constant GreaterThanOrEqual => scalar('GreaterThanOrEqual');
use constant CustomCode => scalar('CustomCode'); 1;