| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::RCSPaymentStatusCodeType
The status of a payment.
Payment is in canceled state.
Payment is in completed state.
Payment is in pending state.
(out) Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::RCSPaymentStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. RCSPaymentStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Canceled => scalar('Canceled');
use constant Paid => scalar('Paid');
use constant Pending => scalar('Pending');
use constant CustomCode => scalar('CustomCode'); 1;