Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 22.07.2011 09:27// $Id: RevokeTokenRequestType.php 813 2011-11-03 08:31:07Z tiefland $// $Log: $////require_once 'AbstractRequestType.php';/*** Voluntarily revokes a token before it would otherwise expire.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/RevokeTokenRequestType.html**/class RevokeTokenRequestType extends AbstractRequestType{/*** @var boolean*/protected $UnsubscribeNotification;/*** @return boolean*/function getUnsubscribeNotification(){return $this->UnsubscribeNotification;}/*** @return void* @param boolean $value*/function setUnsubscribeNotification($value){$this->UnsubscribeNotification = $value;}/*** @return*/function __construct(){parent::__construct('RevokeTokenRequestType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('UnsubscribeNotification' =>array('required' => false,'type' => 'boolean','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1')));}}?>