forked from bhosalearchu/EbatNs_Shopping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbstractRequestType.php
61 lines (59 loc) · 1.44 KB
/
AbstractRequestType.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
// autogenerated file 10.09.2012 13:13
// $Id: $
// $Log: $
//
//
require_once 'EbatNs_ComplexType.php';
/**
* Base type definition of the request payload, which can carry any typeof payload
* content plus optional versioning information and detail level requirements.All
* concrete request types are derived from the abstract request type.The naming
* convention we use for the concrete type names is the name of the service(the
* verb or call name) followed by "RequestType": VerbNameRequestType
*
* @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/AbstractRequestType.html
*
*/
class AbstractRequestType extends EbatNs_ComplexType
{
/**
* @var string
*/
protected $MessageID;
/**
* @return string
*/
function getMessageID()
{
return $this->MessageID;
}
/**
* @return void
* @param string $value
*/
function setMessageID($value)
{
$this->MessageID = $value;
}
/**
* @return
*/
function __construct()
{
parent::__construct('AbstractRequestType', 'urn:ebay:apis:eBLBaseComponents');
if (!isset(self::$_elements[__CLASS__]))
self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],
array(
'MessageID' =>
array(
'required' => false,
'type' => 'string',
'nsURI' => 'http://www.w3.org/2001/XMLSchema',
'array' => false,
'cardinality' => '0..1'
)
));
}
}
?>