Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

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

/**
 * Indicates Skype contact options. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/SkypeContactOptionCodeType.html
 *
 * @property string Chat
 * @property string Voice
 * @property string CustomCode
 */
class SkypeContactOptionCodeType extends EbatNs_FacetType
{
        const CodeType_Chat = 'Chat';
        const CodeType_Voice = 'Voice';
        const CodeType_CustomCode = 'CustomCode';

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

        }
}

$Facet_SkypeContactOptionCodeType = new SkypeContactOptionCodeType();

?>