Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

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

/**
 * PromotionItemSelectionCodeType - Type declaration to be used byother schema. 
 * Indicates how the cross-promoted item was selected forassociation with the 
 * referring item. If the seller defined anitem-to-item cross-promotion rule and 
 * the item was selected becauseof that rule, then "Manual" is returned. If the 
 * seller defined someother rule and the item was selected because of that rule (or 
 * theseller defined no rules that could be applied), then "Automatic" isreturned. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/PromotionItemSelectionCodeType.html
 *
 * @property string Manual
 * @property string Automatic
 * @property string CustomCode
 */
class PromotionItemSelectionCodeType extends EbatNs_FacetType
{
        const CodeType_Manual = 'Manual';
        const CodeType_Automatic = 'Automatic';
        const CodeType_CustomCode = 'CustomCode';

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

        }
}

$Facet_PromotionItemSelectionCodeType = new PromotionItemSelectionCodeType();

?>