Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 22.07.2011 09:27// $Id: $// $Log: $////require_once 'DisputeType.php';require_once 'AbstractResponseType.php';/*** Returned after calling GetDisputeRequest. Returns the record of a dispute,* including the dispute state and other information. <br><br>Both Sellers and* Buyers can use the SellerClosedDispute in Platform Notifications to receive a* notification when a dispute has been closed. The notification includes the same* data that is returned in the GetDispute response.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/GetDisputeResponseType.html**/class GetDisputeResponseType extends AbstractResponseType{/*** @var DisputeType*/protected $Dispute;/*** @return DisputeType*/function getDispute(){return $this->Dispute;}/*** @return void* @param DisputeType $value*/function setDispute($value){$this->Dispute = $value;}/*** @return*/function __construct(){parent::__construct('GetDisputeResponseType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('Dispute' =>array('required' => false,'type' => 'DisputeType','nsURI' => 'urn:ebay:apis:eBLBaseComponents','array' => false,'cardinality' => '0..1')));}}?>