Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 22.07.2011 09:27
// $Id: SellerDashboardAlertSeverityCodeType.php 813 2011-11-03 08:31:07Z tiefland $
// $Log: $
//
require_once 'EbatNs_FacetType.php';

/**
 * Alerts can be either informational or a warning that identifies a problem. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/SellerDashboardAlertSeverityCodeType.html
 *
 * @property string Informational
 * @property string Warning
 * @property string StrongWarning
 * @property string CustomCode
 */
class SellerDashboardAlertSeverityCodeType extends EbatNs_FacetType
{
        const CodeType_Informational = 'Informational';
        const CodeType_Warning = 'Warning';
        const CodeType_StrongWarning = 'StrongWarning';
        const CodeType_CustomCode = 'CustomCode';

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

        }
}

$Facet_SellerDashboardAlertSeverityCodeType = new SellerDashboardAlertSeverityCodeType();

?>