| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::AccessRuleStatusCodeType
Defines values that describe an application's current status with respect to an API access rule. The rules specify daily, hourly, and periodic usage limits for various eBay Web Services calls.
(out) The rule is turned off, and no rule validation was performed.
(out) The rule is turned on, and rule validation was performed.
(out) The application is blocked from making requests to the call named in this rule.
(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::AccessRuleStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. AccessRuleStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant RuleOff => scalar('RuleOff');
use constant RuleOn => scalar('RuleOn');
use constant ApplicationBlocked => scalar('ApplicationBlocked');
use constant CustomCode => scalar('CustomCode'); 1;