| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::OrderStatusCodeType
The set of valid states for an order.
The cart is active. Items can only be added, deleted, or updated in the cart when status is Active.
The cart is invalid; it does not exist. An example is a cart that has expired.
The order is completed.
The cart was cancelled.
The order was shipped. Half.com users can specify this in the GetOrders input.
Default status.
The cart was authenticated.
After placing the order and before completion of checkout, the card is "in process."
Invalid.
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;