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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::AccessRuleStatusCodeType

DESCRIPTION

Top

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.

SYNOPSIS

Top

Enums:

Top

RuleOff

(out) The rule is turned off, and no rule validation was performed.

RuleOn

(out) The rule is turned on, and rule validation was performed.

ApplicationBlocked

(out) The application is blocked from making requests to the call named in this rule.

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