| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::CategoryFeatureDetailLevelCodeType
The Detail Level argument for GetCategories allows the following settings to control the detail level of the result set.
Return all available data.
Return the category feature definitions only.
(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::CategoryFeatureDetailLevelCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. CategoryFeatureDetailLevelCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant ReturnAll => scalar('ReturnAll');
use constant ReturnFeatureDefinitions => scalar('ReturnFeatureDefinitions');
use constant CustomCode => scalar('CustomCode'); 1;