Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 22.07.2011 09:27
// $Id: ConfirmIdentityRequestType.php 813 2011-11-03 08:31:07Z tiefland $
// $Log: $
//
//
require_once 'AbstractRequestType.php';

/**
 * Returns the ID of a user who has gone through an application's consent 
 * flowprocess for obtaining an authorization token. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/ConfirmIdentityRequestType.html
 *
 */
class ConfirmIdentityRequestType extends AbstractRequestType
{
        /**
         * @var string
         */
        protected $SessionID;

        /**
         * @return string
         */
        function getSessionID()
        {
                return $this->SessionID;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setSessionID($value)
        {
                $this->SessionID = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('ConfirmIdentityRequestType', 'urn:ebay:apis:eBLBaseComponents');
                if (!isset(self::$_elements[__CLASS__]))
                                self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],
                                array(
                                        'SessionID' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));
        }
}
?>