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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::CharacteristicsSearchCodeType

DESCRIPTION

Top

Indicates whether one attribute or multiple attributes can be used as the search criteria when calling GetProductSearchResults.

SYNOPSIS

Top

Enums:

Top

Single

(out) The search criteria can consist of one attribute.

Multi

(out) Not used. (For multi-attribute search criteria, call GetProductFinder instead.)

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