| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::NotificationEventStateCodeType
Valid notification status codes
Status indicating the notification is newly created
Status indicating the notification was failed
Status indicating the end user application is marked down
Status indicating the notification is pending
Status indicating the notification is failed pending
Status indicating the notification is marked down pending
Status indicating the notification was successfully delivered
Status indicating the notification was unable to deliver
Status indicating the notification was rejected
Status indicating the notification was cancelled
Reserved for future internal or external use
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::NotificationEventStateCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. NotificationEventStateCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant New => scalar('New');
use constant Failed => scalar('Failed');
use constant MarkedDown => scalar('MarkedDown');
use constant Pending => scalar('Pending');
use constant FailedPending => scalar('FailedPending');
use constant MarkedDownPending => scalar('MarkedDownPending');
use constant Delivered => scalar('Delivered');
use constant Undeliverable => scalar('Undeliverable');
use constant Rejected => scalar('Rejected');
use constant Canceled => scalar('Canceled');
use constant CustomCode => scalar('CustomCode'); 1;