| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::AnnouncementMessageCodeType
Part of the mechanism for eBay to control which announcement messages are to be made available to the user.
No message is to be made available.
A deprecation message is to be made available, but only if today's date is between AnnouncementMessageType.AnnouncementStartTime and AnnouncementMessageType.EventTime.
A mapping message is to be made available, but only if today's date is after AnnouncementMessageType.EventTime.
Both "Deprecation" and "Mapping" enumerations are to apply.
Reserved for future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::AnnouncementMessageCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. AnnouncementMessageCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant None => scalar('None');
use constant Deprecation => scalar('Deprecation');
use constant Mapping => scalar('Mapping');
use constant DeprecationAndMapping => scalar('DeprecationAndMapping');
use constant CustomCode => scalar('CustomCode'); 1;