Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 22.07.2011 09:27// $Id: SetSellingManagerItemAutomationRuleRequestType.php 813 2011-11-03 08:31:07Z tiefland $// $Log: $////require_once 'SellingManagerAutoRelistType.php';require_once 'SellingManagerAutoSecondChanceOfferType.php';require_once 'AbstractRequestType.php';require_once 'ItemIDType.php';/*** Revises, or adds to, the set of Selling Manager automationrules associated with* an item.<br><br>This call is subject to change without notice; thedeprecation* process is inapplicable to this call.<br><br>Using this call, you can add an* autolist rule.You also can add a second chance offerrule (restricted to auction* items and auction templates).Note that autorelist rules can only be set on* templates.An autorelist rule for an item is inherited from a* template.<br><br>This call also enables you to specify particular information* about automationrules.<br><br>If a node is not passed in the call, the setting* for the correspondingautomation rule remains unchanged.<br><br>Although this* call can revise (overwrite) an existing rule,this call cannot delete an* automation rule.(Instead, use DeleteSellingManagerItemAutomationRule.)** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/SetSellingManagerItemAutomationRuleRequestType.html**/class SetSellingManagerItemAutomationRuleRequestType extends AbstractRequestType{/*** @var ItemIDType*/protected $ItemID;/*** @var SellingManagerAutoRelistType*/protected $AutomatedRelistingRule;/*** @var SellingManagerAutoSecondChanceOfferType*/protected $AutomatedSecondChanceOfferRule;/*** @return ItemIDType*/function getItemID(){return $this->ItemID;}/*** @return void* @param ItemIDType $value*/function setItemID($value){$this->ItemID = $value;}/*** @return SellingManagerAutoRelistType*/function getAutomatedRelistingRule(){return $this->AutomatedRelistingRule;}/*** @return void* @param SellingManagerAutoRelistType $value*/function setAutomatedRelistingRule($value){$this->AutomatedRelistingRule = $value;}/*** @return SellingManagerAutoSecondChanceOfferType*/function getAutomatedSecondChanceOfferRule(){return $this->AutomatedSecondChanceOfferRule;}/*** @return void* @param SellingManagerAutoSecondChanceOfferType $value*/function setAutomatedSecondChanceOfferRule($value){$this->AutomatedSecondChanceOfferRule = $value;}/*** @return*/function __construct(){parent::__construct('SetSellingManagerItemAutomationRuleRequestType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('ItemID' =>array('required' => false,'type' => 'ItemIDType','nsURI' => 'urn:ebay:apis:eBLBaseComponents','array' => false,'cardinality' => '0..1'),'AutomatedRelistingRule' =>array('required' => false,'type' => 'SellingManagerAutoRelistType','nsURI' => 'urn:ebay:apis:eBLBaseComponents','array' => false,'cardinality' => '0..1'),'AutomatedSecondChanceOfferRule' =>array('required' => false,'type' => 'SellingManagerAutoSecondChanceOfferType','nsURI' => 'urn:ebay:apis:eBLBaseComponents','array' => false,'cardinality' => '0..1')));}}?>