Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 04.11.2008 16:17// $Id: $// $Log: $////require_once 'EbatNs_ComplexType.php';/*** Allows you to group Best Match search results by category.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/GroupType.html**/class GroupType extends EbatNs_ComplexType{/*** @var int*/protected $MaxGroups;/*** @var int*/protected $MaxEntriesPerGroup;/*** @return int*/function getMaxGroups(){return $this->MaxGroups;}/*** @return void* @param int $value*/function setMaxGroups($value){$this->MaxGroups = $value;}/*** @return int*/function getMaxEntriesPerGroup(){return $this->MaxEntriesPerGroup;}/*** @return void* @param int $value*/function setMaxEntriesPerGroup($value){$this->MaxEntriesPerGroup = $value;}/*** @return*/function __construct(){parent::__construct('GroupType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('MaxGroups' =>array('required' => false,'type' => 'int','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1'),'MaxEntriesPerGroup' =>array('required' => false,'type' => 'int','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1')));}}?>