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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::BidGroupStatusCodeType

DESCRIPTION

Top

This code identifies the status of the bid group.

SYNOPSIS

Top

Enums:

Top

Open

(out) Indicates that the bid group is open.

Closed

(out) Indicates that the bid group is Closed.

CustomCode

Reserved for future use.


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

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

use strict;
use warnings;  

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


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



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



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







1;