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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PromotionalSaleStatusCodeType

DESCRIPTION

Top

Values indicate the status of a sale. Used for the Promotional Price Display feature, which enables sellers to apply discounts across many listings.

SYNOPSIS

Top

Enums:

Top

Active

(out) The status of the promotional sale is active status.

Scheduled

(out) The status of the promotional sale is scheduled status.

Processing

(out) The status of the promotional sale is pending status.

Inactive

(out) The status of the promotional sale is inactive status status.

Deleted

(out) The status of the promotional sale is deleted status status.

CustomCode

(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;