| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::LogoTypeCodeType
The type of logo.
The PayPal Winning Bidder Notice logo.
The seller's eBay Store logo.
A custom logo specified in LogoURL.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::LogoTypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. LogoTypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant WinningBidderNotice => scalar('WinningBidderNotice');
use constant Store => scalar('Store');
use constant Custom => scalar('Custom');
use constant CustomCode => scalar('CustomCode'); 1;