Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 22.07.2011 09:27
// $Id: PaymentStatusCodeType.php 4066 2011-11-03 08:13:59Z tiefland $
// $Log: $
//
require_once 'EbatNs_FacetType.php';

/**
 * Indicates the success or failure of the buyer's online payment for an order. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/PaymentStatusCodeType.html
 *
 * @property string NoPaymentFailure
 * @property string BuyerECheckBounced
 * @property string BuyerCreditCardFailed
 * @property string BuyerFailedPaymentReportedBySeller
 * @property string PayPalPaymentInProcess
 * @property string PaymentInProcess
 * @property string CustomCode
 */
class PaymentStatusCodeType extends EbatNs_FacetType
{
        const CodeType_NoPaymentFailure = 'NoPaymentFailure';
        const CodeType_BuyerECheckBounced = 'BuyerECheckBounced';
        const CodeType_BuyerCreditCardFailed = 'BuyerCreditCardFailed';
        const CodeType_BuyerFailedPaymentReportedBySeller = 'BuyerFailedPaymentReportedBySeller';
        const CodeType_PayPalPaymentInProcess = 'PayPalPaymentInProcess';
        const CodeType_PaymentInProcess = 'PaymentInProcess';
        const CodeType_CustomCode = 'CustomCode';

        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('PaymentStatusCodeType', 'urn:ebay:apis:eBLBaseComponents');

        }
}

$Facet_PaymentStatusCodeType = new PaymentStatusCodeType();

?>