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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::StoreCustomListingHeaderLinkCodeType

DESCRIPTION

Top

Specifies the type of link in the custom listing header.

SYNOPSIS

Top

Enums:

Top

None

No type.

AboutMePage

Link is to an About Me page.

CustomPage

Link is to a custom page.

CustomCategory

Link is to a custom category.

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

use strict;
use warnings;  

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


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



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



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



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



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







1;