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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::BidGroupItemStatusCodeType

DESCRIPTION

Top

This type contains the status of the items within a bid group.

SYNOPSIS

Top

Enums:

Top

CurrentBid

(out) The items in the group currently being bid on.

Cancelled

(out) Items in the group that were not bid on because a user retracted a bid and closed his group or because eBay Customer Support ended a group and all the active and pending items within that group were cancelled.

Pending

(out) Items in the bid group that are currently active, but have not yet been bid on.

Skipped

(out) Items that have been skipped and not bid on (and bidded has ended).

Ended

(out) Item has ended.

Won

(out) Item was purchased and has ended.

GroupClosed

(out) Item has ended.

CustomCode

Reserved for future use.


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

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

use strict;
use warnings;  

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


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



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



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



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



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



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



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



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







1;