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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::EndReasonCodeType

DESCRIPTION

Top

Specifies the seller's reason for ending an item listing early. This is required if the seller ended the listing early and the item did not successfully sell of if the item has bids and the seller wants to sell to the high bidder.

SYNOPSIS

Top

Enums:

Top

LostOrBroken

The item was lost or broken.

NotAvailable

The item is no longer available for sale.

Incorrect

The start price or reserve price is incorrect.

OtherListingError

The listing contained an error (other than start price or reserve price).

CustomCode

Reserved for internal or future use.

SellToHighBidder

The listing has qualifying bids (i.e., there is a current high bid that, when applicable, meets the minimum reserve price) and there are more than 12 hours before the listing ends. Sell the item to the highest eligible bidder. <br> In the last 12 hours of an item listing, you cannot end an item early if it has bids.


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::EndReasonCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. EndReasonCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant LostOrBroken => scalar('LostOrBroken');



use constant NotAvailable => scalar('NotAvailable');



use constant Incorrect => scalar('Incorrect');



use constant OtherListingError => scalar('OtherListingError');



use constant CustomCode => scalar('CustomCode');



use constant SellToHighBidder => scalar('SellToHighBidder');







1;