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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::OrderStatusCodeType

DESCRIPTION

Top

The set of valid states for an order.

SYNOPSIS

Top

Enums:

Top

Active

The cart is active. Items can only be added, deleted, or updated in the cart when status is Active.

Inactive

The cart is invalid; it does not exist. An example is a cart that has expired.

Completed

The order is completed.

Cancelled

The cart was cancelled.

Shipped

The order was shipped. Half.com users can specify this in the GetOrders input.

Default

Default status.

Authenticated

The cart was authenticated.

InProcess

After placing the order and before completion of checkout, the card is "in process."

Invalid

Invalid.

CustomCode

Reserved for internal or future use.


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

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

use strict;
use warnings;  

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


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



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



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



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



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



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



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



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



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



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







1;