| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::PromotionalSaleStatusCodeType
Values indicate the status of a sale. Used for the Promotional Price Display feature, which enables sellers to apply discounts across many listings.
(out) The status of the promotional sale is active status.
(out) The status of the promotional sale is scheduled status.
(out) The status of the promotional sale is pending status.
(out) The status of the promotional sale is inactive status status.
(out) The status of the promotional sale is deleted status status.
(out) Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::PromotionalSaleStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. PromotionalSaleStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Active => scalar('Active');
use constant Scheduled => scalar('Scheduled');
use constant Processing => scalar('Processing');
use constant Inactive => scalar('Inactive');
use constant Deleted => scalar('Deleted');
use constant CustomCode => scalar('CustomCode'); 1;