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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::StoreCustomPageStatusCodeType

DESCRIPTION

Top

List of possible statuses for Store custom pages.

SYNOPSIS

Top

Enums:

Top

Active

The page is visible.

Delete

The page is to be deleted.

Inactive

The page is not visible.

CustomCode

Reserved for internal or future use.


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::StoreCustomPageStatusCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. StoreCustomPageStatusCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant Active => scalar('Active');



use constant Delete => scalar('Delete');



use constant Inactive => scalar('Inactive');



use constant CustomCode => scalar('CustomCode');







1;