Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 04.11.2008 16:17// $Id: $// $Log: $////require_once 'UserIDType.php';require_once 'EbatNs_ComplexType.php';/*** The approval status of a user who wants to bid on a live auction.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/LiveAuctionApprovalStatusType.html**/class LiveAuctionApprovalStatusType extends EbatNs_ComplexType{/*** @var UserIDType*/protected $UserID;/*** @var string*/protected $Status;/*** @return UserIDType*/function getUserID(){return $this->UserID;}/*** @return void* @param UserIDType $value*/function setUserID($value){$this->UserID = $value;}/*** @return string*/function getStatus(){return $this->Status;}/*** @return void* @param string $value*/function setStatus($value){$this->Status = $value;}/*** @return*/function __construct(){parent::__construct('LiveAuctionApprovalStatusType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('UserID' =>array('required' => false,'type' => 'UserIDType','nsURI' => 'urn:ebay:apis:eBLBaseComponents','array' => false,'cardinality' => '0..1'),'Status' =>array('required' => false,'type' => 'string','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1')));}}?>