Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 22.07.2011 09:27// $Id: GetSellingManagerInventoryFolderRequestType.php 813 2011-11-03 08:31:07Z tiefland $// $Log: $////require_once 'AbstractRequestType.php';/*** Retrieves Selling Manager inventory folders.This call is subject to change* without notice; the deprecation process isinapplicable to this call.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/GetSellingManagerInventoryFolderRequestType.html**/class GetSellingManagerInventoryFolderRequestType extends AbstractRequestType{/*** @var long*/protected $FolderID;/*** @var int*/protected $MaxDepth;/*** @var boolean*/protected $FullRecursion;/*** @return long*/function getFolderID(){return $this->FolderID;}/*** @return void* @param long $value*/function setFolderID($value){$this->FolderID = $value;}/*** @return int*/function getMaxDepth(){return $this->MaxDepth;}/*** @return void* @param int $value*/function setMaxDepth($value){$this->MaxDepth = $value;}/*** @return boolean*/function getFullRecursion(){return $this->FullRecursion;}/*** @return void* @param boolean $value*/function setFullRecursion($value){$this->FullRecursion = $value;}/*** @return*/function __construct(){parent::__construct('GetSellingManagerInventoryFolderRequestType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('FolderID' =>array('required' => false,'type' => 'long','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1'),'MaxDepth' =>array('required' => false,'type' => 'int','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1'),'FullRecursion' =>array('required' => false,'type' => 'boolean','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1')));}}?>