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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::CheckoutStatusCodeType

DESCRIPTION

Top

Indicates the current state of the checkout process for a transaction.

SYNOPSIS

Top

Enums:

Top

CheckoutComplete

(out) Checkout complete.

CheckoutIncomplete

(out) Checkout incomplete--no details specified.

BuyerRequestsTotal

(out) Buyer requests total from seller.

SellerResponded

(out) Seller responded to buyer's request.

CustomCode

(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;