| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::StoreFontFaceCodeType
Font selection for Store configuration.
Arial font.
Courier font.
Times New Roman font.
Verdana font.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::StoreFontFaceCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. StoreFontFaceCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Arial => scalar('Arial');
use constant Courier => scalar('Courier');
use constant Times => scalar('Times');
use constant Verdana => scalar('Verdana');
use constant CustomCode => scalar('CustomCode'); 1;