| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::StoreCustomHeaderLayoutCodeType
Specifies whether the Store has a custom header.
Specifies that the Store does not have a custom header.
Specifies that the Store does have a custom header.
(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::StoreCustomHeaderLayoutCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. StoreCustomHeaderLayoutCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant NoHeader => scalar('NoHeader');
use constant CustomHeaderShown => scalar('CustomHeaderShown');
use constant CustomCode => scalar('CustomCode'); 1;