Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

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

/**
 * SeverityCodeType - Type declaration to be used by other schema.This code 
 * identifies the severity of an API error. A code indicateswhether there is an 
 * API-level error or warning that needs to becommunicated to the client. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/SeverityCodeType.html
 *
 * @property string Warning
 * @property string Error
 * @property string CustomCode
 */
class SeverityCodeType extends EbatNs_FacetType
{
        const CodeType_Warning = 'Warning';
        const CodeType_Error = 'Error';
        const CodeType_CustomCode = 'CustomCode';

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

        }
}

$Facet_SeverityCodeType = new SeverityCodeType();

?>