| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::WarningLevelCodeType
Do not return warnings when the application passes unrecognized or deprecated elements in a request. This is the default value if WarningLevel is not specified.
Return warnings when the application passes unrecognized or deprecated elements in a request.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::WarningLevelCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. WarningLevelCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Low => scalar('Low');
use constant High => scalar('High'); 1;