| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::CheckoutStatusCodeType
Indicates the current state of the checkout process for a transaction.
(out) Checkout complete.
(out) Checkout incomplete--no details specified.
(out) Buyer requests total from seller.
(out) Seller responded to buyer's request.
(out) Reserved for future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::CheckoutStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. CheckoutStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant CheckoutComplete => scalar('CheckoutComplete');
use constant CheckoutIncomplete => scalar('CheckoutIncomplete');
use constant BuyerRequestsTotal => scalar('BuyerRequestsTotal');
use constant SellerResponded => scalar('SellerResponded');
use constant CustomCode => scalar('CustomCode'); 1;