| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::CharacteristicsSearchCodeType
Indicates whether one attribute or multiple attributes can be used as the search criteria when calling GetProductSearchResults.
(out) The search criteria can consist of one attribute.
(out) Not used. (For multi-attribute search criteria, call GetProductFinder instead.)
(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::CharacteristicsSearchCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. CharacteristicsSearchCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Single => scalar('Single');
use constant Multi => scalar('Multi');
use constant CustomCode => scalar('CustomCode'); 1;