| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::AccessRuleCurrentStatusCodeType
Describes the current status of your application with regard to rules governing the number of times your application can execute API calls.
(out) The rule is not set and usage limits do not apply.
(out) Your application has exceeded its hourly hard limit.
(out) Your application has exceeded its daily hard limit.
(out) Your application has exceeded its periodic hard limit.
(out) Your application has exceeded its hourly soft limit.
(out) Your application has exceeded its daily soft limit.
(out) Your application has exceeded its periodic soft limit.
(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::AccessRuleCurrentStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. AccessRuleCurrentStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant NotSet => scalar('NotSet');
use constant HourlyLimitExceeded => scalar('HourlyLimitExceeded');
use constant DailyLimitExceeded => scalar('DailyLimitExceeded');
use constant PeriodicLimitExceeded => scalar('PeriodicLimitExceeded');
use constant HourlySoftLimitExceeded => scalar('HourlySoftLimitExceeded');
use constant DailySoftLimitExceeded => scalar('DailySoftLimitExceeded');
use constant PeriodicSoftLimitExceeded => scalar('PeriodicSoftLimitExceeded');
use constant CustomCode => scalar('CustomCode'); 1;