1: <?php
2: /**
3: * Partner API Library
4: *
5: * @copyright Copyright (c) 2020 Asseco Data Systems SA
6: * @license license.txt
7: */
8:
9: require_once 'typeRequest.php';
10:
11: /*
12: <xs:complexType name="getOrderStateRequest">
13: <xs:complexContent>
14: <xs:extension base="tns:request">
15: <xs:sequence>
16: <xs:element name="orderID" type="xs:string"/>
17: </xs:sequence>
18: </xs:extension>
19: </xs:complexContent>
20: </xs:complexType>
21: */
22:
23: /**
24: * This class represents the getOrderStateRequest WSDL type.
25: *
26: * It is an extension to the PartnerAPITypeRequest class.
27: *
28: * @method PartnerAPITypeGetOrderStateRequest setOrderID(string $value) Sets the orderID element.
29: * @method string getOrderID() Gets the orderID element.
30: * @property string $orderID Gets the orderID element.
31: *
32: * @package types
33: */
34: class PartnerAPITypeGetOrderStateRequest extends PartnerAPITypeRequest {
35:
36: protected function initData() {
37: $p = parent::initData();
38: $n = array(
39: 'orderID' => array('min' => 1, 'max' => 1, 'value' => NULL, 'type' => 'string', 'nillable' => FALSE)
40: );
41: $n = array_merge($p, $n);
42: return $n;
43: }
44:
45:
46: }
47: