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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::AnnouncementMessageCodeType

DESCRIPTION

Top

Part of the mechanism for eBay to control which announcement messages are to be made available to the user.

SYNOPSIS

Top

Enums:

Top

None

No message is to be made available.

Deprecation

A deprecation message is to be made available, but only if today's date is between AnnouncementMessageType.AnnouncementStartTime and AnnouncementMessageType.EventTime.

Mapping

A mapping message is to be made available, but only if today's date is after AnnouncementMessageType.EventTime.

DeprecationAndMapping

Both "Deprecation" and "Mapping" enumerations are to apply.

CustomCode

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;